-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathcomposer.json
36 lines (36 loc) · 928 Bytes
/
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
{
"name": "zoonman/pixabay-php-api",
"type": "library",
"description": "PixabayClient is a PHP HTTP client library to access Pixabay's API",
"keywords": ["Pixabay", "http", "rest", "web service", "curl", "client", "HTTP client"],
"homepage": "https://www.zoonman.com/projects/pixabay/",
"license": "MIT",
"authors": [
{
"name": "Philipp Tkachev",
"email": "[email protected]",
"homepage": "https://www.zoonman.com/"
}
],
"require": {
"php": ">=7.1.0",
"guzzlehttp/guzzle": "^6.2|^7.0.0",
"ext-json": "*"
},
"require-dev": {
"phpunit/phpunit": "^7.0.0|^8.0.0|^9.0.0|^10.0.0"
},
"autoload": {
"psr-4": {
"Pixabay\\": "src/Pixabay/"
}
},
"autoload-dev": {
"psr-4": {
"Pixabay\\Tests\\": "tests/"
}
},
"scripts": {
"test": "vendor/bin/phpunit --bootstrap tests/bootstrap.php --configuration phpunit.xml.dist tests/"
}
}