-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
66 lines (66 loc) · 2.17 KB
/
composer.json
File metadata and controls
66 lines (66 loc) · 2.17 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
57
58
59
60
61
62
63
64
65
66
{
"name": "stixx/openapi-command-bundle",
"description": "Create Command-Bus APIs with auto-generated OpenAPI docs and schema-driven request validation",
"type": "symfony-bundle",
"license": "MIT",
"authors": [
{
"name": "Jelle van Oosterbosch",
"email": "info@celer-it.nl"
}
],
"autoload": {
"psr-4": {
"Stixx\\OpenApiCommandBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Stixx\\OpenApiCommandBundle\\Tests\\": "tests/"
}
},
"require": {
"php": "^8.4",
"ext-json": "*",
"league/openapi-psr7-validator": "^0.22.0",
"nelmio/api-doc-bundle": "^5.8",
"nyholm/psr7": "^1.8",
"symfony/dependency-injection": "^7.3 || ^8.0",
"symfony/framework-bundle": "^7.3 || ^8.0",
"symfony/messenger": "^7.3 || ^8.0",
"symfony/property-access": "^7.3 || ^8.0",
"symfony/psr-http-message-bridge": "^7.3 || ^8.0",
"symfony/serializer": "^7.3 || ^8.0",
"symfony/validator": "^7.3 || ^8.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.91",
"nyholm/symfony-bundle-test": "^3.0",
"phpstan/extension-installer": "^1.4",
"phpstan/phpstan": "^2.1",
"phpstan/phpstan-phpunit": "^2.0",
"phpstan/phpstan-symfony": "^2.0",
"symfony/phpunit-bridge": "^8.0"
},
"suggest": {
"nijens/openapi-bundle": "For creating REST APIs from your OpenAPI specification.",
"symfony/security": "For using authentication and exception handling in your APIs."
},
"config": {
"sort-packages": true,
"allow-plugins": {
"phpstan/extension-installer": true
}
},
"scripts": {
"test": "./vendor/bin/simple-phpunit",
"test:unit": "./vendor/bin/simple-phpunit --filter Unit",
"test:functional": "./vendor/bin/simple-phpunit --filter Functional",
"check": [
"@cs-fixer",
"@phpstan"
],
"cs-fixer": "php -d memory_limit=-1 ./vendor/bin/php-cs-fixer fix",
"phpstan": "php -d memory_limit=-1 ./vendor/bin/phpstan analyse"
}
}