-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcomposer.json
40 lines (40 loc) · 1.12 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
36
37
38
39
40
{
"name": "nekland/base-api",
"type": "library",
"description": "Simple library you can build you're api upon.",
"keywords": ["nekland", "api", "base"],
"license": "MIT",
"authors": [
{
"name": "Maxime Veber",
"email": "[email protected]",
"homepage": "http://nekland.fr"
},
{
"name": "Nekland Team",
"email": "[email protected]",
"homepage": "http://team.nekland.fr"
}
],
"require": {
"php": ">=5.6",
"symfony/event-dispatcher": "~2.3|~3.0"
},
"require-dev": {
"phpspec/phpspec": "^2.5.0",
"guzzlehttp/guzzle": "^6.2.0"
},
"suggest": {
"nekland/youtube-api": "Youtube API made easy !",
"nekland/soundcloud-api": "Soundcloud API made easy !",
"guzzlehttp/guzzle": "The only http adapter available for now is for this library."
},
"autoload": {
"psr-0": { "Nekland\\": "lib/" }
},
"extra": {
"branch-alias": {
"dev-master": "2.0-dev"
}
}
}