-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
62 lines (62 loc) · 2.19 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
{
"name": "fusonic/http-kernel-bundle",
"description": "Symfony bundle with extensions for Symfony's HttpKernel",
"version": "1.4.1",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Fusonic GmbH",
"email": "office@fusonic.net",
"homepage": "https://www.fusonic.net/"
}
],
"autoload": {
"psr-4": {
"Fusonic\\HttpKernelBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Fusonic\\HttpKernelBundle\\Tests\\": "tests/"
}
},
"require": {
"php": ">=8.2",
"phpdocumentor/reflection-docblock": "^5.3",
"symfony/config": "^6.3 || ^7.0",
"symfony/dependency-injection": "^6.3 || ^7.0",
"symfony/http-kernel": "^6.3 || ^7.0",
"symfony/property-access": "^6.3 || ^7.0",
"symfony/property-info": "^6.3 || ^7.0",
"symfony/serializer": "^6.3 || ^7.0",
"symfony/validator": "^6.3 || ^7.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.58",
"infection/infection": "^0.29",
"phpstan/phpstan": "^1.11",
"phpstan/phpstan-deprecation-rules": "^1.2",
"phpstan/phpstan-phpunit": "^1.4",
"phpstan/phpstan-strict-rules": "^1.6",
"phpstan/phpstan-symfony": "^1.4",
"phpunit/phpunit": "^11.2",
"roave/security-advisories": "dev-latest",
"symfony/cache": "^6.3 || ^7.0",
"tomasvotruba/type-coverage": "^0.3"
},
"scripts": {
"phpstan": "XDEBUG_MODE=off php -d memory_limit=2048M vendor/bin/phpstan analyse",
"phpcs-check": "XDEBUG_MODE=off vendor/bin/php-cs-fixer check -v --diff",
"phpcs-fix": "XDEBUG_MODE=off vendor/bin/php-cs-fixer fix -v",
"infection": "XDEBUG_MODE=coverage vendor/bin/infection",
"test": "XDEBUG_MODE=off vendor/bin/phpunit --testdox",
"test-coverage" : "XDEBUG_MODE=coverage vendor/bin/phpunit --coverage-text --coverage-cobertura=coverage/phpunit/cobertura.xml --coverage-html=coverage/phpunit/html"
},
"config": {
"sort-packages": true,
"allow-plugins": {
"infection/extension-installer": true
}
}
}