-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
59 lines (59 loc) · 1.83 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
{
"name": "ibexa/compatibility-layer",
"description": "Compatibility layer between old code from organisation ezsystems and version 4.0 code from organisation ibexa",
"autoload": {
"psr-4": {
"Ibexa\\Bundle\\CompatibilityLayer\\": "src/bundle/",
"Ibexa\\CompatibilityLayer\\": "src/lib/"
},
"files": [
"register_autoloader.php"
]
},
"autoload-dev": {
"psr-4": {
"Ibexa\\Tests\\Bundle\\CompatibilityLayer\\": "tests/bundle",
"Ibexa\\Tests\\CompatibilityLayer\\": "tests/lib"
}
},
"require": {
"php": "^7.4 || ^8.0",
"ext-json": "*",
"nikic/php-parser": "^4.13",
"symfony/config": "^5.0",
"symfony/console": "^5.0",
"symfony/dependency-injection": "^5.0",
"symfony/filesystem": "^5.0",
"symfony/finder": "^5.0",
"symfony/http-kernel": "^5.0",
"symfony/yaml": "^5.0",
"symfony/process": "^5.3",
"symfony/form": "^5.0"
},
"require-dev": {
"symfony/var-dumper": "^5.0",
"ibexa/code-style": "^1.0",
"ibexa/design-engine": "~5.0.0@dev",
"ibexa/core": "~5.0.0@dev",
"ibexa/doctrine-schema": "~5.0.0@dev",
"matthiasnoback/symfony-dependency-injection-test": "^4.3",
"phpunit/phpunit": "^9.5.10",
"phpstan/phpstan": "^0.12.99"
},
"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 -c phpstan.neon",
"test": "phpunit"
},
"extra": {
"branch-alias": {
"dev-main": "5.0.x-dev"
}
},
"config": {
"allow-plugins": {
"composer/package-versions-deprecated": true
}
}
}