-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
33 lines (33 loc) · 900 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
{
"name": "adressebook",
"description": "Just to test zf2 and doctrine and some others stuffs...",
"license": "BSD-3-Clause",
"keywords": [
"framework",
"zf2",
"doctrine"
],
"homepage": "https://github.com/Nirzol/AddressBook",
"authors": [
{
"name": "Eric Grondin"
}
],
"require": {
"php": ">=5.3.3",
"zendframework/zendframework": "~2.3",
"zendframework/zend-developer-tools": "dev-master",
"bjyoungblood/bjy-profiler": "dev-master",
"doctrine/doctrine-orm-module" : "0.*"
},
"require-dev":{
"zendframework/zftool": "dev-master",
"phpunit/phpunit": "4.6.*"
},
"autoload" : {
"psr-4": {
"AddressBook\\": "module/AddressBook/src/AddressBook",
"Bootstrap\\": "module/Bootstrap/src/Bootstrap"
}
}
}