-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
58 lines (58 loc) · 1.74 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
{
"name": "ibexa/bundle-generator",
"license": "(GPL-2.0-only or proprietary)",
"description": "Symfony Bundle generator for Ibexa DXP based projects",
"type": "project",
"keywords": [
"ibexa-dxp"
],
"require": {
"php": ">=8.3",
"symfony/console": "^5.4",
"symfony/filesystem": "^5.4"
},
"require-dev": {
"composer/composer": "^2.1",
"friendsofphp/php-cs-fixer": "^3.0",
"ibexa/code-style": "~2.0.0",
"phpstan/phpstan": "^0.12.75",
"phpunit/phpunit": "^9.0"
},
"bin": [
"bin/ibexa-bundle-generator"
],
"autoload": {
"psr-4": {
"Ibexa\\Bundle\\BundleGenerator\\": "src/bundle",
"Ibexa\\Contracts\\BundleGenerator\\": "src/contracts",
"Ibexa\\BundleGenerator\\": "src/lib"
}
},
"autoload-dev": {
"psr-4": {
"Ibexa\\Tests\\Bundle\\BundleGenerator\\": "tests/bundle",
"Ibexa\\Tests\\Integration\\BundleGenerator\\": "tests/integration",
"Ibexa\\Tests\\BundleGenerator\\": "tests/lib"
}
},
"scripts": {
"fix-cs": "php-cs-fixer fix --config=.php-cs-fixer.php --show-progress=dots",
"check-cs": "@fix-cs --dry-run",
"test": "phpunit -c phpunit.xml.dist",
"phpstan": "phpstan analyse -c phpstan.neon"
},
"scripts-descriptions": {
"fix-cs": "Automatically fixes code style in all files",
"check-cs": "Run code style checker for all files",
"test": "Run automatic tests",
"phpstan": "Run static code analysis"
},
"extra": {
"branch-alias": {
"dev-main": "1.0.x-dev"
}
},
"config": {
"sort-packages": true
}
}