-
Notifications
You must be signed in to change notification settings - Fork 15
/
composer.json
99 lines (99 loc) · 3.22 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
{
"name": "ibexa/admin-ui",
"license": "GPL-2.0-only",
"type": "project",
"description": "Ibexa Admin Ui",
"replace": {
"ezsystems/ezplatform-admin-ui": "*"
},
"autoload": {
"psr-4": {
"Ibexa\\AdminUi\\": "src/lib/",
"Ibexa\\Bundle\\AdminUi\\": "src/bundle/",
"Ibexa\\Contracts\\AdminUi\\": "src/contracts/"
}
},
"autoload-dev": {
"psr-4": {
"Ibexa\\Tests\\Bundle\\AdminUi\\": "tests/bundle/",
"Ibexa\\Tests\\Integration\\AdminUi\\": "tests/integration/",
"Ibexa\\Tests\\AdminUi\\": "tests/lib/"
}
},
"require": {
"php": " >=8.3",
"ext-json": "*",
"babdev/pagerfanta-bundle": "^2.1",
"ibexa/content-forms": "~5.0.x-dev",
"ibexa/core": "~5.0.x-dev",
"ibexa/design-engine": "~5.0.x-dev",
"ibexa/fieldtype-richtext": "~5.0.x-dev",
"ibexa/rest": "~5.0.x-dev",
"ibexa/search": "~5.0.x-dev",
"ibexa/user": "~5.0.x-dev",
"jms/translation-bundle": "^1.5",
"knplabs/knp-menu-bundle": "^3.0",
"mck89/peast": "^1.9",
"symfony/asset": "^5.0",
"symfony/config": "^5.0",
"symfony/console": "^5.0",
"symfony/dependency-injection": "^5.0",
"symfony/deprecation-contracts": "^2.5",
"symfony/event-dispatcher": "^5.0",
"symfony/filesystem": "^5.0",
"symfony/form": "^5.0",
"symfony/http-foundation": "^5.0",
"symfony/http-kernel": "^5.0",
"symfony/options-resolver": "^5.0",
"symfony/routing": "^5.0",
"symfony/security-core": "^5.0",
"symfony/security-http": "^5.0",
"symfony/translation": "^5.0",
"symfony/validator": "^5.0",
"symfony/webpack-encore-bundle": "^v1.17",
"symfony/yaml": "^5.0",
"twig/intl-extra": "^3.0",
"twig/string-extra": "^3.0",
"twig/twig": "^3.0",
"willdurand/js-translation-bundle": "^4.0"
},
"require-dev": {
"ext-zip": "*",
"dama/doctrine-test-bundle": "^v6.7",
"ibexa/behat": "~5.0.x-dev",
"ibexa/ci-scripts": "^0.2@dev",
"ibexa/code-style": "~2.0.0",
"ibexa/doctrine-schema": "~5.0.x-dev",
"ibexa/http-cache": "~5.0.x-dev",
"ibexa/notifications": "~5.0.x-dev",
"ibexa/test-core": "~5.0.x-dev",
"ibexa/test-rest": "~5.0.x-dev",
"matthiasnoback/symfony-dependency-injection-test": "^4.0",
"phpstan/phpstan": "^1.10",
"phpstan/phpstan-phpunit": "^1.3",
"phpstan/phpstan-symfony": "^1.3",
"phpunit/phpunit": "^9.5"
},
"config": {
"allow-plugins": {
"*": false
},
"sort-packages": true
},
"scripts": {
"fix-cs": "php-cs-fixer fix --config=.php-cs-fixer.php -v --show-progress=dots",
"check-cs": "@fix-cs --dry-run",
"phpstan": "phpstan analyse",
"test-unit": "phpunit -c phpunit.xml",
"test-integration": "phpunit -c phpunit.integration.xml",
"test": [
"@test-unit",
"@test-integration"
]
},
"extra": {
"branch-alias": {
"dev-main": "5.0.x-dev"
}
}
}