-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
54 lines (54 loc) · 1.32 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
{
"name": "answear/luigis-box-bundle",
"description": "Luigi's Box integration for Symfony.",
"type": "symfony-bundle",
"license": "MIT",
"require": {
"php": "^8.2",
"ext-json": "*",
"webmozart/assert": "^1.11",
"symfony/validator": "^6.0|^7.0",
"symfony/http-kernel": "^6.0|^7.0",
"guzzlehttp/guzzle": "^6.0|^7.0",
"symfony/serializer": "^6.0|^7.0",
"symfony/property-access": "^6.0|^7.0"
},
"require-dev": {
"roave/security-advisories": "dev-master",
"phpunit/phpunit": "^10.5",
"symfony/phpunit-bridge": "^6.1|^7.0",
"phpro/grumphp": "^2.8",
"friendsofphp/php-cs-fixer": "^3.64",
"phpstan/phpstan": "^1.12",
"phpstan/phpstan-webmozart-assert": "^1.2",
"matthiasnoback/symfony-config-test": "^5.2"
},
"autoload": {
"psr-4": {
"Answear\\LuigisBoxBundle\\": "src/LuigisBoxBundle/"
}
},
"autoload-dev": {
"psr-4": {
"Answear\\LuigisBoxBundle\\Tests\\": "tests"
}
},
"scripts": {
"post-install-cmd": [
"GrumPHP\\Composer\\DevelopmentIntegrator::integrate"
],
"post-update-cmd": [
"GrumPHP\\Composer\\DevelopmentIntegrator::integrate"
]
},
"extra": {
"grumphp": {
"config-default-path": "grumphp.yaml"
}
},
"config": {
"allow-plugins": {
"phpro/grumphp": true
}
}
}