forked from Happyr/Doctrine-Specification
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
38 lines (38 loc) · 906 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
{
"name": "happyr/doctrine-specification",
"type": "library",
"description": "Specification Pattern for your Doctrine repositories",
"keywords": ["Doctrine", "Repository", "Specification"],
"homepage": "http://developer.happyr.com/",
"license": "MIT",
"authors": [
{
"name": "Tobias Nyholm",
"email": "tobias@happyr.com"
},
{
"name": "Kacper Gunia",
"email": "kacper@gunia.me"
}
],
"require": {
"php": ">=5.4",
"doctrine/orm": ">=2.2.3"
},
"require-dev": {
"phpspec/phpspec": "~2.1"
},
"autoload": {
"psr-4": {
"Happyr\\DoctrineSpecification\\": "src/"
}
},
"extra": {
"branch-alias": {
"dev-master": "0.8-dev"
}
},
"scripts": {
"test": "vendor/bin/phpspec run"
}
}