-
Notifications
You must be signed in to change notification settings - Fork 14
/
composer.json
executable file
·39 lines (39 loc) · 1010 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": "overblog/thrift-bundle",
"description": "OverBlog Thrift Bundle",
"homepage": "https://github.com/overblog/ThriftBundle.git",
"type": "symfony-bundle",
"license": "MIT",
"authors": [
{
"name": "OverBlog",
"homepage": "http://www.over-blog.com"
}
],
"autoload": {
"psr-4": {"Overblog\\ThriftBundle\\": ""},
"exclude-from-classmap": [
"/Tests/"
]
},
"config" : {
"bin-dir": "bin",
"sort-packages": true
},
"require": {
"php": "^5.3.6|~7.0",
"apache/thrift": ">=0.9.1",
"symfony/class-loader": "~2.3||~3.0",
"symfony/dependency-injection": "~2.3||~3.0||^4.0",
"symfony/framework-bundle": "~2.3||~3.0||^4.0"
},
"require-dev": {
"phpunit/phpunit": "^4.1 || ^5.5",
"symfony/symfony": "~2.3||~3.0||^4.0"
},
"extra": {
"branch-alias": {
"dev-master": "0.9-dev"
}
}
}