-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathcomposer.json
52 lines (52 loc) · 1.71 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
47
48
49
50
51
52
{
"name" : "friendsofphp/pickleweb",
"type" : "application",
"description" : "PickleWeb is the main Pickle repository. It aggregates extensions for all PHP implementations.",
"homepage" : "https://github.com/FriendsOfPHP/pickleweb",
"license" : "BSD",
"authors" : [
{
"name" : "Pierre Joye",
"email" : "pierre.php@gmail.com",
"homepage": "http://pecl.php.net/user/pajoye",
"role" : "Developer"
},
{
"name" : "Community",
"homepage": "https://github.com/FriendsOfPHP/pickleweb/graphs/contributors"
}
],
"require" : {
"php" : ">=5.6.0",
"slim/slim" : "2.*",
"twig/twig" : "~1.0",
"composer/composer" : "~1.0-alpha8",
"league/oauth2-client" : "*",
"league/oauth1-client" : "*",
"akrabat/rka-slim-controller": "2.0.*",
"FriendsOfPhp/pickle" : ">=0.4.0",
"knplabs/github-api" : "~1.2",
"predis/predis" : "1.0.*",
"kriswallsmith/buzz" : "0.*",
"ruflin/elastica" : "dev-master"
},
"require-dev" : {
"atoum/atoum" : "*",
"atoum/stubs" : "*",
"fabpot/php-cs-fixer": "~1.7"
},
"autoload" : {
"psr-4": {
"PickleWeb\\": ["src/"]
}
},
"autoload-dev": {
"psr-4": {
"PickleWeb\\Tests\\": ["tests/"]
}
},
"scripts" : {
"cs" : "vendor/bin/php-cs-fixer --ansi fix --config=sf23",
"test": "vendor/bin/atoum -ft"
}
}