This repository has been archived by the owner on Dec 12, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
55 lines (55 loc) · 1.87 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
{
"name": "selami/selami-skeleton",
"description": "Skeleton app that is built on selami/foundation",
"type": "project",
"require": {
"php": "^7.1",
"selami/stdlib": "^1.6",
"selami/foundation": "^0.11",
"selami/commands": "^0.2",
"zendframework/zend-servicemanager": "^3.3",
"selami/zend-servicemanager-factories": "^0.6",
"symfony/http-foundation": "^4.1",
"psr/http-server-middleware": "^1.0",
"zendframework/zend-stratigility": "^3.0"
},
"require-dev": {
"roave/security-advisories": "dev-master",
"codeception/codeception": "^2.4"
},
"license": "MIT",
"authors": [
{
"name": "Mehmet Korkmaz",
"email": "[email protected]"
}
],
"config": {
"preferred-install": {
"*": "dist"
},
"optimize-autoloader": true
},
"minimum-stability": "stable",
"autoload": {
"psr-4": {
"Selami\\Authentication\\Controller\\": "src/apps/www/middlewares/Authentication/controllers",
"Selami\\App\\Controller\\": "src/apps/www/middlewares/App/controllers",
"Selami\\Middleware\\": "src/apps/www/middlewares",
"Selami\\AppFactories\\": "src/factories",
"Selami\\Helper\\": "src/helpers"
}
},
"scripts": {
"post-update-cmd": [
"composer dump-autoload -o"
],
"post-create-project-cmd": [
"cp config/autoload/local.php.dist config/autoload/local.php",
"cp config/autoload/view.local.php.dist config/autoload/view.local.php",
"cp config/autoload/commands.local.php.dist config/autoload/commands.local.php",
"cp config/autoload/dependencies.local.php.dist config/autoload/dependencies.local.php",
"composer dump-autoload -o"
]
}
}