-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathcomposer.json
46 lines (46 loc) · 1.01 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
41
42
43
44
45
46
{
"name": "phraseanet/php-sdk",
"description": "A library to interact with Phraseanet API",
"type": "library",
"keywords": ["Phraseanet"],
"license": "MIT",
"authors": [
{
"name": "nlegoff",
"email": "[email protected]"
},
{
"name": "Phraseanet Team",
"email": "[email protected]",
"homepage": "http://www.phraseanet.com/"
}
],
"require": {
"php": ">=5.5",
"doctrine/cache": "~1.0",
"doctrine/collections": "~1.0",
"guzzle/guzzle": "~3.0"
},
"require-dev": {
"sami/sami": "^1.0",
"silex/silex": "^1.0",
"silex/web-profiler": "^1.0",
"symfony/console": "^2.0",
"phpunit/phpunit": "^4.0",
"squizlabs/php_codesniffer": "^2.3"
},
"suggest": {
"silex/web-profiler": "To use the WebProfiler with silex",
"symfony/console": "To run the request player with a console output"
},
"autoload": {
"psr-0": {
"PhraseanetSDK": "src"
}
},
"extra": {
"branch-alias": {
"dev-master": "0.9.x-dev"
}
}
}