-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathcomposer.json
35 lines (35 loc) · 1.04 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
{
"name": "private-packagist/api-client",
"description": "Private Packagist API Client",
"keywords": ["private packagist", "composer", "api"],
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Packagist Conductors UG (haftungsbeschränkt)",
"email": "[email protected]"
}
],
"require": {
"php": "^5.6 || ^7.0",
"psr/http-message": "^1.0",
"php-http/httplug": "^1.0",
"php-http/discovery": "^1.0",
"php-http/client-implementation": "^1.0",
"php-http/client-common": "^1.3"
},
"require-dev": {
"phpunit/phpunit": "^5.5 || ^6.0",
"php-http/guzzle6-adapter": "^1.0",
"php-http/mock-client": "^1.0",
"guzzlehttp/psr7": "^1.2",
"cache/array-adapter": "^0.4",
"friendsofphp/php-cs-fixer": "^2.10"
},
"autoload": {
"psr-4": { "PrivatePackagist\\ApiClient\\": "src/" }
},
"autoload-dev": {
"psr-4": { "PrivatePackagist\\ApiClient\\": "tests/"}
}
}