forked from apixu/apixu-php
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
38 lines (38 loc) · 950 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
37
38
{
"name": "apixu/apixu-php",
"type": "library",
"description": "PHP library for Apixu Weather API",
"keywords": ["apixu", "weather"],
"homepage": "https://www.apixu.com/",
"license": "MIT",
"authors": [
{
"name": "Andrei Avram",
"email": "[email protected]",
"homepage": "https://www.andreiavram.ro/",
"role": "Developer"
}
],
"require": {
"php": ">=7.1",
"guzzlehttp/guzzle": "^6.2",
"andreiavrammsd/serializer": "^0.5"
},
"require-dev": {
"phpunit/phpunit": "^7.3",
"phpstan/phpstan": "^0.10",
"phpmd/phpmd": "^2.6",
"overtrue/phplint": "^1.1",
"squizlabs/php_codesniffer": "^3.3"
},
"autoload": {
"psr-4" : {
"Apixu\\" : "src/"
}
},
"autoload-dev": {
"psr-4": {
"Apixu\\Tests\\": "tests/"
}
}
}