-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
40 lines (35 loc) · 1 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
{
"name": "open-orchestra/open-orchestra-model-interface",
"description": "Describe all entity and repository to implement for the whole OpenOrchestra project",
"license": "Apache-2.0",
"authors": [
{
"name": "OpenOrchestra community",
"homepage": "https://github.com/open-orchestra/open-orchestra-model-interface/graphs/contributors"
}
],
"support": {
"issues": "https://github.com//open-orchestra/open-orchestra-model-interface/issues",
"docs": "http://open-orchestra.readthedocs.io/fr/latest/"
},
"require": {
"php": "~5.6.0",
"doctrine/annotations": "~1.2.7",
"doctrine/collections": "~1.3.0",
"symfony/form": "~2.8.6",
"open-orchestra/open-orchestra-libs": "self.version"
},
"require-dev": {
"phpunit/phpunit": "~5.5.0",
"phake/phake": "~2.3.0",
"codeclimate/php-test-reporter": "~0.3.2"
},
"config": {
"bin-dir": "bin"
},
"autoload": {
"psr-4": {
"OpenOrchestra\\ModelInterface\\": "ModelInterface/"
}
}
}