forked from safrazik/emp-directory
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
38 lines (37 loc) · 1.08 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
{
"name": "adrotec/emp-directory",
"description": "Breeze php server demo",
"authors": [
{
"name": "Muhammad Safraz Razik",
"email": "[email protected]"
}
],
"require": {
"php": ">=5.3.2",
"jms/serializer": "0.16.0",
"doctrine/orm": "v2.4.2",
"symfony/config": "2.5.*",
"symfony/http-foundation": "2.5.*",
"symfony/http-kernel": "2.5.*",
"symfony/debug": "2.5.*",
"symfony/validator": "dev-master",
"adrotec/breeze.server.php": "dev-master",
"ext-sqlite3": "*",
"ext-pdo_sqlite": "*"
},
"autoload": {
"psr-0": {"EmpDirectory": "server/standalone/src/"}
},
"config": {
"vendor-dir": "server/standalone/vendor"
},
"scripts": {
"post-install-cmd": [
"PATH=`pwd`/vendor/node/bin:$PATH; cd client; ../node_modules/bower/bin/bower install"
],
"post-update-cmd": [
"PATH=`pwd`/vendor/node/bin:$PATH; cd client; ../node_modules/bower/bin/bower install"
]
}
}