-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
53 lines (53 loc) · 1.12 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
53
{
"name": "williamespindola/field",
"type": "library",
"description": "Field provider",
"homepage": "https://github.com/williamespindola/field",
"license": "BDS-3-Clause",
"keywords": [
"field",
"cms",
"console"
],
"authors": [
{
"name": "William Espindola",
"email": "[email protected]",
"homepage": "http://williamespindola.com.br",
"role": "Developer"
}
],
"require": {
"php" : ">=5.4",
"ocramius/generated-hydrator": "1.1.0",
"doctrine/orm": "2.5.0",
"respect/relational": "^0.8"
},
"require-dev": {
"phpunit/phpunit" : "4.*",
"behat/behat": "~3.0"
},
"suggest": {
"doctrine/orm": "orm 2.5.0, if you want to work with doctrine",
"respect/relational": "relational ^0.8, if you want to work with relational"
},
"autoload": {
"psr-4": {
"WilliamEspindola\\Field\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"WilliamEspindola\\Field\\Test\\": "tests"
}
},
"extra": {
"branch-alias": {
"dev-master": "1.0-dev"
}
},
"scripts": {
"test": "phpunit"
},
"bin": ["bin/field"]
}