-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcomposer.json
35 lines (35 loc) · 913 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
{
"name": "fsc/batch",
"description": "Library with classes to help you do batch.",
"keywords": ["symfony", "development", "batch", "command", "helper"],
"type": "library",
"license": "MIT",
"authors": [
{
"name": "The Football Social Club",
"email": "contact@thefootballsocialclub.com",
"homepage": "http://thefootballsocialclub.com"
}
],
"require": {
"php": ">=5.3",
"pagerfanta/pagerfanta": "dev-master",
"symfony/event-dispatcher": ">=2.1"
},
"require-dev": {
"doctrine/common": ">=2.2",
"symfony/console": "2.*"
},
"autoload": {
"psr-0": {
"FSC\\Batch": "src/",
"FSC\\Batch\\Tests": "tests/"
}
},
"minimum-stability": "dev",
"extra": {
"branch-alias": {
"dev-master": "0.3-dev"
}
}
}