-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
44 lines (44 loc) · 1.16 KB
/
composer.json
File metadata and controls
44 lines (44 loc) · 1.16 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
{
"name": "productsupcom/container-api-client",
"type": "project",
"description": "",
"license": "proprietary",
"require": {
"php": ">=8.2",
"jane-php/open-api-3": "^7.6",
"guzzlehttp/guzzle": "^7||^6||^5",
"monolog/monolog": "^2.3",
"ramsey/uuid": "^4.2",
"rybakit/msgpack": "^0.9.1"
},
"require-dev": {
"roave/security-advisories": "dev-master",
"phpstan/phpstan": "^1.9",
"mikey179/vfsstream": "^1.6",
"phpunit/phpunit": "^11.3",
"friendsofphp/php-cs-fixer": "^3.51"
},
"autoload": {
"psr-4": {
"Productsup\\CDE\\ContainerApi\\": "src/Client",
"Productsup\\CDE\\ContainerApi\\BaseClient\\": "BaseClient"
}
},
"autoload-dev": {
"psr-4": {
"Productsup\\CDE\\Tests\\": "tests"
}
},
"scripts": {
"test": "vendor/bin/phpunit",
"csfix": "vendor/bin/php-cs-fixer fix --verbose",
"csdiff": "vendor/bin/php-cs-fixer fix --stop-on-violation --verbose --dry-run --diff",
"stan": "vendor/bin/phpstan analyze src",
"stan-baseline": "vendor/bin/phpstan analyze src --generate-baseline"
},
"config": {
"allow-plugins": {
"php-http/discovery": true
}
}
}