This repository has been archived by the owner on Oct 2, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
53 lines (53 loc) · 1.87 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": "fusonic/http-kernel-extensions",
"license": "MIT",
"version": "5.3.4",
"description": "Symfony HttpKernel Component Extensions.",
"type": "library",
"authors": [
{
"name": "Fusonic GmbH",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"Fusonic\\HttpKernelExtensions\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Fusonic\\HttpKernelExtensions\\Tests\\": "tests/"
}
},
"require": {
"php": ">=8.1",
"phpdocumentor/reflection-docblock": "^5.3",
"symfony/http-kernel": "^5.4|^6.0",
"symfony/property-access": "^5.4|^6.0",
"symfony/property-info": "^5.4|^6.0",
"symfony/serializer": "^5.4.12|^6.0",
"symfony/validator": "^5.4|^6.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.14",
"phpstan/phpstan": "^1.10",
"phpstan/phpstan-phpunit": "^1.3",
"phpstan/phpstan-strict-rules": "^1.5",
"phpstan/phpstan-symfony": "^1.3",
"phpunit/phpunit": "^9.6",
"symfony/cache": "^5.4|^6.0",
"symfony/phpunit-bridge": "^5.4|^6.0",
"tomasvotruba/type-coverage": "^0.2"
},
"scripts": {
"phpstan": "XDEBUG_MODE=off php -d memory_limit=2048M vendor/bin/phpstan analyse",
"phpcs-check": "XDEBUG_MODE=off vendor/bin/php-cs-fixer fix --config=.php-cs-fixer.dist.php -v --dry-run --diff --using-cache=yes",
"phpcs-fix": "XDEBUG_MODE=off vendor/bin/php-cs-fixer fix --config=.php-cs-fixer.dist.php -v --using-cache=yes",
"test": "XDEBUG_MODE=off vendor/bin/phpunit --testdox",
"test-coverage" : "XDEBUG_MODE=coverage vendor/bin/phpunit --coverage-text --coverage-cobertura=coverage/cobertura.xml --coverage-html=coverage/html"
},
"config": {
"sort-packages": true
}
}