-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
49 lines (49 loc) · 1.28 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
{
"name": "smartbooster/standard-bundle",
"type": "symfony-bundle",
"description": "Bundle grouping all dev vendor that we use for testing and coding with the SMART BOOSTER standards",
"keywords": ["dev", "testing", "static analysis", "symfony", "bundle", "standard", "code-standards", "quality"],
"license": "MIT",
"authors": [
{
"name": "Mathieu Ducrot",
"email": "[email protected]",
"homepage": "https://www.smartbooster.io"
}
],
"require": {
"php": "^8.1",
"dama/doctrine-test-bundle": "^6.7|^7.1",
"doctrine/orm": "^2.13",
"liip/test-fixtures-bundle": "^2.4",
"phpmetrics/phpmetrics": "^2.8",
"phpstan/phpstan-doctrine": "^1.3",
"phpstan/phpstan-symfony": "^1.2",
"sebastian/phpcpd": "^6.0",
"squizlabs/php_codesniffer": "^3.7",
"symfony/framework-bundle": "^5.4|^6.2",
"symfony/validator": "^5.4|^6.2"
},
"autoload": {
"psr-4": {
"Smart\\StandardBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Smart\\StandardBundle\\Tests\\": "tests/"
}
},
"config": {
"allow-plugins": {
"symfony/runtime": true,
"php-http/discovery": true
},
"sort-packages": true
},
"extra": {
"branch-alias": {
"dev-master": "1.0.x-dev"
}
}
}