-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
53 lines (53 loc) · 1.38 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
{
"name": "siganushka/generic-bundle",
"description": "Generic bundle for symfony.",
"keywords": ["generic-bundle", "symfony-ux"],
"homepage": "https://github.com/siganushka/generic-bundle",
"type": "symfony-bundle",
"license": "MIT",
"authors": [
{
"name": "siganushka",
"email": "[email protected]"
}
],
"require": {
"php": ">=8.1",
"symfony/framework-bundle": "^6.4|^7.0"
},
"require-dev": {
"composer/semver": "^3.0",
"knplabs/knp-components": "^4.4|^5.0",
"siganushka/doctrine-contracts": "dev-main",
"symfony/form": "^6.4|^7.0",
"symfony/serializer": "^6.4|^7.0",
"symfony/translation": "^6.4|^7.0",
"symfony/validator": "^6.4|^7.0"
},
"autoload": {
"psr-4": {
"Siganushka\\GenericBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Siganushka\\GenericBundle\\Tests\\": "tests/"
}
},
"extra": {
"symfony": {
"allow-contrib": "true"
}
},
"config": {
"sort-packages": true
},
"scripts": {
"tools:run": [
"tools/vendor/bin/php-cs-fixer fix",
"tools/vendor/bin/twigcs",
"tools/vendor/bin/simple-phpunit --debug",
"tools/vendor/bin/phpstan analyse"
]
}
}