-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
39 lines (39 loc) · 973 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
39
{
"name": "flerex/spain-gas",
"description": "A PHP client for the Geoportal Gasolineras API",
"keywords": ["geoportal", "gasolineras", "client"],
"type": "library",
"support": {
"issues": "https://github.com/flerex/spain-gas/issues",
"source": "https://github.com/flerex/spain-gas"
},
"license": "MIT",
"authors": [
{
"name": "Flerex",
"email": "[email protected]"
}
],
"minimum-stability": "stable",
"require": {
"php": "^7.4||^8.0",
"myclabs/php-enum": "^1.7",
"guzzlehttp/guzzle": "^7.2",
"ext-json": "*",
"ext-simplexml": "*",
"ext-mbstring": "*"
},
"autoload": {
"psr-4": {
"Flerex\\SpainGas\\": "src/"
}
},
"require-dev": {
"phpunit/phpunit": "^9.5"
},
"autoload-dev": {
"psr-4": {
"Flerex\\SpainGas\\Tests\\": "tests/"
}
}
}