-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
75 lines (75 loc) · 2.34 KB
/
composer.json
File metadata and controls
75 lines (75 loc) · 2.34 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
67
68
69
70
71
72
73
74
75
{
"name": "webproject-xyz/docker-api-client",
"description": "A PHP docker API client generated from docker api swagger schema with jane",
"license": "MIT",
"type": "library",
"homepage": "https://www.webproject.xyz",
"authors": [
{
"name": "Benjamin Fahl",
"email": "ben+github@webproject.xyz",
"role": "developer"
}
],
"require": {
"php": "~8.3.0 || ~8.4.0 || ~8.5.0",
"jane-php/open-api-runtime": "^7.10.4",
"phpdocumentor/reflection-docblock": "^6.0.1",
"phpstan/phpdoc-parser": "^2.3.2",
"symfony/console": "^7.4.3 || ^8.0",
"symfony/http-client": "^7.4.3 || ^8.0",
"symfony/http-client-contracts": "^3.6",
"symfony/property-access": "^7.4.3 || ^8.0",
"symfony/property-info": "^7.4.3 || ^8.0",
"symfony/runtime": "^7.4.1 || ^8.0",
"symfony/serializer": "^7.4.3 || ^8.0"
},
"require-dev": {
"codeception/codeception": "^5.3.4",
"codeception/module-asserts": "^3.3.0",
"codeception/module-phpbrowser": "^4.0.0",
"friendsofphp/php-cs-fixer": "3.94.2",
"jane-php/open-api-3": "^7.10.4",
"roave/security-advisories": "dev-latest",
"symfony/var-dumper": "7.4.0 || ^8.0",
"phpstan/phpstan": "^2.1.39",
"phpstan/phpstan-webmozart-assert": "^2.0.0",
"phpstan/extension-installer": "^1.4.3",
"webproject-xyz/codeception-module-ai-reporter": "^1.0.1"
},
"autoload": {
"psr-4": {
"WebProject\\DockerApiClient\\": "src/",
"WebProject\\DockerApi\\Library\\Generated\\": "generated/"
}
},
"autoload-dev": {
"psr-4": {
"WebProject\\DockerApiClient\\Tests\\": "tests/"
}
},
"bin": [
"bin/docker-api"
],
"config": {
"platform": {
"php": "8.3.0"
},
"allow-plugins": {
"php-http/discovery": true,
"symfony/runtime": true,
"phpstan/extension-installer": true
},
"sort-packages": true,
"optimize-autoloader": true
},
"scripts": {
"generate": "XDEBUG_MODE=off jane-openapi generate",
"cs:check": "php-cs-fixer fix --allow-risky=yes --dry-run --diff --show-progress=dots",
"cs:fix": "php-cs-fixer fix --allow-risky=yes",
"stan": "phpstan analyse --no-progress --debug",
"test": "codecept run --report",
"test:coverage": "XDEBUG_MODE=coverage codecept run --coverage --coverage-xml=coverage.xml --xml --report",
"test:build": "codecept build"
}
}