-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
executable file
·66 lines (65 loc) · 1.75 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
{
"name": "janwebdev/carguru-member-bundle",
"description": "CarGuru Member Bundle",
"keywords": ["symfony", "bundle", "carguru", "member", "admin", "php"],
"type": "symfony-bundle",
"homepage": "https://github.com/janwebdev/carguru-member-bundle",
"license": "MIT",
"authors": [
{
"name": "Jan Rogozinsky",
"email": "[email protected]",
"role": "PHP developer"
}
],
"require":{
"php": "^7.4|^8.0|^8.1",
"symfony/config": "^4.4||^5.4||^6",
"symfony/dependency-injection": "^4.4||^5.4||^6",
"symfony/framework-bundle": "^4.4||^5.4||^6",
"symfony/security-bundle": "^4.4||^5.4||^6",
"symfony/form": "^4.4||^5.4||^6",
"symfony/twig-bundle": "^4.4||^5.4||^6",
"doctrine/orm": "^2.5"
},
"require-dev": {
"roave/security-advisories": "dev-latest",
"symfony/test-pack": "*",
"phpunit/phpunit": "^9",
"phpro/grumphp": "^1.3",
"squizlabs/php_codesniffer": "^3.5",
"phpstan/phpstan": "^1.7.10"
},
"autoload": {
"psr-4": {
"Carguru\\MemberBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Carguru\\MemberBundle\\Tests\\": "tests/"
}
},
"conflict": {
"symfony/symfony": "*"
},
"extra": {
"symfony": {
"allow-contrib": "true",
"require": "^4.4"
},
"branch-alias": {
"dev-master": "2.x-dev"
}
},
"scripts": {
"test": "./vendor/bin/grumphp run"
},
"config": {
"allow-plugins": {
"phpro/grumphp": true
}
},
"minimum-stability": "beta",
"prefer-stable": true
}