forked from certificationy/certificationy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
35 lines (35 loc) · 905 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": "certificationy/certificationy",
"type": "library",
"description": "A library to train on Symfony certification",
"keywords": ["symfony", "certification", "test", "exam"],
"homepage": "http://github.com/certificationy/certificationy",
"license": "MIT",
"authors": [
{
"name": "Vincent Composieux",
"email": "vincent.composieux@gmail.com"
},
{
"name": "Luis Cordova",
"email": "cordoval@gmail.com"
}
],
"require": {
"php": ">=5.3.3",
"symfony/console": ">=2.5",
"symfony/finder": ">=2.5",
"symfony/yaml": ">=2.5"
},
"require-dev": {
"phpunit/phpunit": "~4.1"
},
"autoload": {
"psr-4": { "Certificationy\\": "" }
},
"extra": {
"branch-alias": {
"dev-master": "1.0.x-dev"
}
}
}