-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
69 lines (69 loc) · 2.17 KB
/
composer.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "ibexa/fieldtype-query",
"license": "GPL-2.0-only",
"type": "ibexa-bundle",
"description": "Ibexa Field Type that defines a query.",
"replace": {
"ezsystems/ezplatform-query-fieldtype": "*"
},
"require": {
"php": ">=8.3",
"ext-json": "*",
"ibexa/admin-ui": "~5.0.x-dev",
"ibexa/content-forms": "~5.0.x-dev",
"ibexa/core": "~5.0.x-dev",
"ibexa/graphql": "~5.0.x-dev",
"ibexa/rest": "~5.0.x-dev",
"psr/log": "^1.1",
"symfony/dependency-injection": "^5.0",
"symfony/event-dispatcher": "^5.0",
"symfony/expression-language": "^5.0",
"symfony/framework-bundle": "^5.0",
"symfony/http-kernel": "^5.0",
"symfony/translation": "^5.0",
"symfony/yaml": "^5.0"
},
"autoload": {
"psr-4": {
"Ibexa\\Bundle\\FieldTypeQuery\\": "src/bundle/",
"Ibexa\\FieldTypeQuery\\": "src/lib/",
"Ibexa\\Contracts\\FieldTypeQuery\\": "src/contracts/"
}
},
"autoload-dev": {
"psr-4": {
"Ibexa\\Tests\\FieldTypeQuery\\": "tests/lib/",
"Ibexa\\Tests\\Bundle\\FieldTypeQuery\\": "tests/bundle/"
}
},
"require-dev": {
"ibexa/code-style": "~2.0.0",
"ibexa/design-engine": "~5.0.x-dev",
"ibexa/doctrine-schema": "~5.0.x-dev",
"ibexa/fieldtype-richtext": "~5.0.x-dev",
"ibexa/http-cache": "~5.0.x-dev",
"ibexa/notifications": "~5.0.x-dev",
"ibexa/phpstan": "~5.0.0@dev",
"ibexa/search": "~5.0.x-dev",
"ibexa/user": "~5.0.x-dev",
"phpspec/phpspec": "^7.1",
"phpstan/phpstan": "^2.0",
"phpstan/phpstan-phpunit": "^2.0",
"phpstan/phpstan-symfony": "^2.0"
},
"scripts": {
"fix-cs": "php-cs-fixer fix --config=.php-cs-fixer.php -v --show-progress=dots",
"check-cs": "@fix-cs --dry-run",
"test": "phpspec run --format=pretty",
"phpstan": "phpstan analyse"
},
"extra": {
"branch-alias": {
"dev-main": "5.0.x-dev"
}
},
"config": {
"sort-packages": true,
"allow-plugins": false
}
}