-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
68 lines (68 loc) · 1.65 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
{
"name": "mhujer/consistence-bundle",
"description": "Add translator and form elements for enums from consistence/consistence",
"type": "symfony-bundle",
"keywords": [
"symfony",
"enum",
"enums",
"consistence"
],
"license": "MIT",
"homepage": "https://github.com/mhujer/consistence-bundle",
"authors": [
{
"name": "Martin Hujer",
"email": "mail@martinhujer.cz",
"homepage": "https://www.martinhujer.cz"
}
],
"require": {
"php": "~8.1",
"consistence-community/consistence": "~2.1",
"symfony/config": "^5.4||^6.0||^7.0",
"symfony/dependency-injection": "^5.4||^6.0||^7.0",
"symfony/form": "^5.4||^6.0||^7.0",
"symfony/http-kernel": "^5.4||^6.0||^7.0",
"symfony/translation": "^5.4||^6.0||^7.0",
"symfony/yaml": "^5.4||^6.0||^7.0",
"twig/twig": "^1.41.0 || ^2.12.1 || ^3.0"
},
"require-dev": {
"consistence-community/coding-standard": "3.11.2",
"matthiasnoback/symfony-dependency-injection-test": "^5.0",
"phpstan/extension-installer": "1.1.0",
"phpstan/phpstan-phpunit": "1.1.1",
"phpstan/phpstan": "1.8.5",
"phpunit/phpunit": "^10.5"
},
"autoload": {
"psr-4": {
"Mhujer\\ConsistenceBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Mhujer\\ConsistenceBundle\\": "tests/"
}
},
"config": {
"sort-packages": true,
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"phpstan/extension-installer": true
}
},
"scripts": {
"build": [
"@composer validate --strict",
"@cs",
"@phpstan",
"@test"
],
"cs": "phpcs -s src tests",
"cbf": "phpcbf src tests",
"phpstan": "phpstan analyse src tests -c phpstan.neon --level=8 --no-progress",
"test": "phpunit"
}
}