-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
56 lines (56 loc) · 1.71 KB
/
composer.json
File metadata and controls
56 lines (56 loc) · 1.71 KB
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
{
"name": "speto/api-platform-invoker-bundle",
"description": "Invokable processors + param mapping for API Platform via Symfony ArgumentResolver.",
"type": "symfony-bundle",
"license": "MIT",
"require": {
"php": "^8.2",
"symfony/http-kernel": "^6.4|^7.1",
"symfony/http-foundation": "^6.4|^7.1",
"symfony/dependency-injection": "^6.4|^7.1",
"symfony/config": "^6.4|^7.1",
"api-platform/core": "^3.3"
},
"autoload": {
"psr-4": {
"Speto\\ApiPlatformInvokerBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Speto\\ApiPlatformInvokerBundle\\Tests\\": "tests/"
}
},
"scripts": {
"test": "vendor/bin/phpunit",
"test:unit": "vendor/bin/phpunit --testsuite=unit",
"test:integration": "vendor/bin/phpunit --testsuite=integration",
"test:coverage": "vendor/bin/phpunit --coverage-html coverage",
"test:coverage:clover": "vendor/bin/phpunit --coverage-clover coverage.xml",
"phpstan": "vendor/bin/phpstan analyse",
"phpstan:test": "vendor/bin/phpstan analyse -c phpstan-tests.neon",
"cs:check": "vendor/bin/ecs check",
"cs:fix": "vendor/bin/ecs check --fix",
"qa": [
"@composer validate",
"@composer audit",
"@cs:check",
"@phpstan",
"@test"
]
},
"minimum-stability": "stable",
"prefer-stable": true,
"require-dev": {
"phpstan/phpstan": "^2.1",
"symplify/easy-coding-standard": "^12.5",
"friendsofphp/php-cs-fixer": "^3.85",
"phpunit/phpunit": "^11.5",
"symfony/phpunit-bridge": "^6.4|^7.1",
"mockery/mockery": "^1.6",
"fakerphp/faker": "^1.24",
"symfony/browser-kit": "^6.4|^7.1",
"symfony/css-selector": "^6.4|^7.1",
"symfony/framework-bundle": "^6.4|^7.1"
}
}