forked from MOPCON/MOPCON
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
34 lines (34 loc) · 916 Bytes
/
composer.json
File metadata and controls
34 lines (34 loc) · 916 Bytes
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
{
"name": "MOPCON Official Site",
"description": "",
"require": {
"twig/twig": "^1.18",
"erusev/parsedown": "^1.5",
"jralph/twig-markdown": "1.0.1",
"slim/slim": "^3.0",
"robmorgan/phinx": "^0.10.6",
"illuminate/database": "5.4",
"doctrine/inflector": "1.1.0",
"wruczek/php-file-cache": "^0.0.4",
"predis/predis": "^1.1"
},
"autoload": {
"psr-4": {
"MopCon2018\\": "2018/src",
"MopConApi2018\\": "2018/api/src",
"MopCon\\": "src"
}
},
"scripts": {
"post-install-cmd": [
"composer dumpautoload -o"
],
"migrate2018": [
"vendor/bin/phinx migrate -vvv -e mopcon2018 --ansi",
"vendor/bin/phinx status -vvv -e mopcon2018 --ansi"
]
},
"require-dev": {
"fzaninotto/faker": "^1.8"
}
}