-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
44 lines (44 loc) · 1007 Bytes
/
Copy pathcomposer.json
File metadata and controls
44 lines (44 loc) · 1007 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
35
36
37
38
39
40
41
42
43
44
{
"name": "dimaxz/frameworkless",
"description": "Project skeleton",
"require": {
"nikic/fast-route": "^0.8.0",
"league/container": "^2.2",
"symfony/http-foundation": "^3.0",
"symfony/var-dumper": "^3.0",
"symfony/console" : "^3.0",
"symfony/validator" : "3.1.*",
"filp/whoops": "^2.1",
"vlucas/phpdotenv": "^2.2",
"twig/twig": "^1.24",
"propel/propel": "~2.0@dev",
"donquixote/cellbrush": "1.0.*",
"maximebf/debugbar": "1.*",
"monolog/monolog":"1.*",
"fzaninotto/faker" :"1.6.*",
"dimaxz/selfprice": "@dev",
"dimaxz/core": "@dev"
},
"autoload": {
"psr-4": {
"Frameworkless\\": "app/",
"Core\\": "packages/core/src",
"Selfprice\\": "packages/selfprice/src"
},
"files" :[
"./bootstrap/common.php"
]
},
"repositories": [{
"type": "path",
"url": "./packages/core"
},{
"type": "path",
"url": "./packages/selfprice"
}],
"scripts": {
"post-update-cmd": [
"php app/command packages:install"
]
}
}