forked from docker-php/docker-php-api
-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
composer.json
73 lines (73 loc) · 2.2 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
63
64
65
66
67
68
69
70
71
72
73
{
"name": "beluga-php/docker-php-api",
"description": "Docker API generated files from OpenAPI Specification",
"license": "MIT",
"type": "library",
"funding": [
{
"type": "github",
"url": "https://github.com/flavioheleno"
}
],
"require": {
"php": ">=8.1",
"ext-mbstring": "*",
"jane-php/json-schema-runtime": "^7.5",
"jane-php/open-api-runtime": "^7.5",
"php-http/client-common": "^2.7",
"php-http/discovery": "^1.19",
"php-http/multipart-stream-builder": "^1.3",
"psr/http-client": "^1.0",
"psr/http-client-implementation": "*",
"psr/http-factory": "^1.0",
"psr/http-factory-implementation": "*",
"psr/http-message": "^2.0",
"psr/http-message-implementation": "*",
"symfony/deprecation-contracts": "^3.3",
"symfony/options-resolver": "^6.3 || ^7.0",
"symfony/serializer": "^6.3 || ^7.0",
"symfony/validator": "^6.3 || ^7.0"
},
"require-dev": {
"ergebnis/composer-normalize": "^2.42",
"friendsofphp/php-cs-fixer": "^3.8",
"jane-php/open-api-3": "^7.4",
"roave/security-advisories": "dev-latest"
},
"conflict": {
"docker-php/docker-php-api": "*"
},
"minimum-stability": "dev",
"prefer-stable": true,
"autoload": {
"psr-4": {
"Docker\\API\\": "src/"
}
},
"config": {
"allow-plugins": {
"ergebnis/composer-normalize": true,
"php-http/discovery": false
},
"optimize-autoloader": true,
"preferred-install": "dist",
"sort-packages": true
},
"extra": {
"branch-alias": {
"6.1.36": "6.1.36.x-dev",
"6.1.41": "6.1.41.x-dev",
"7.1.41": "7.1.41.x-dev",
"7.1.42": "7.1.42.x-dev",
"dev-main": "7.1.43.x-dev"
}
},
"scripts": {
"generate": [
"vendor/bin/jane-openapi generate",
"cat patches/*.patch | patch -s -p1"
],
"lint": "vendor/bin/php-cs-fixer fix --dry-run --verbose --diff",
"lint-fix": "vendor/bin/php-cs-fixer fix --verbose"
}
}