-
Notifications
You must be signed in to change notification settings - Fork 16
/
composer.json
44 lines (44 loc) · 1.24 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
{
"name": "private-packagist/api-client",
"description": "Private Packagist API Client",
"keywords": ["private packagist", "composer", "api"],
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Packagist Conductors GmbH",
"email": "[email protected]"
}
],
"require": {
"php": "^7.2 || ^8.0",
"ext-json": "*",
"composer-runtime-api": "^2.0",
"php-http/client-common": "^1.9 || ^2.0",
"php-http/discovery": "^1.0",
"psr/http-client-implementation": "^1.0",
"php-http/message-factory": "^1.0",
"psr/http-message-implementation": "^1.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.0",
"guzzlehttp/guzzle": "^7.0",
"php-http/mock-client": "^1.0",
"phpstan/phpstan": "^1.2",
"phpunit/phpunit": "^8.0 || ^9.0"
},
"autoload": {
"psr-4": { "PrivatePackagist\\ApiClient\\": "src/" }
},
"autoload-dev": {
"psr-4": { "PrivatePackagist\\ApiClient\\": "tests/"}
},
"scripts": {
"toc": "./gh-md-toc --insert README.md"
},
"config": {
"allow-plugins": {
"php-http/discovery": true
}
}
}