-
Notifications
You must be signed in to change notification settings - Fork 7
/
composer.json
43 lines (43 loc) · 867 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
40
41
42
43
{
"name": "germanazo/laravel-ckan-api",
"description": "Laravel 5 client for CKAN Api",
"keywords": [
"laravel",
"api",
"ckan",
"php"
],
"homepage": "https://github.com/Germanaz0/laravel-ckan-api",
"license": "MIT",
"authors": [
{
"name": "German Bortoli",
"email": "[email protected]",
"homepage": "https://github.com/Germanaz0",
"role": "Developer"
}
],
"require": {
"php": ">=5.5.9",
"guzzlehttp/guzzle": "^6.2.0"
},
"autoload": {
"psr-4": {
"Germanazo\\CkanApi\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Germanazo\\CkanApi\\Test\\": "tests"
},
"classmap": [
"tests/TestCase.php"
]
},
"require-dev": {
"phpunit/phpunit": "^5.1",
"mockery/mockery": "^0.9.4",
"laravel/laravel": "5.4.*"
},
"minimum-stability": "dev"
}