-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathcomposer.json
35 lines (35 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
{
"name": "rareloop/primer",
"require": {
"php": ">=7.1.0",
"symfony/finder": "^4.2",
"twig/twig": "^2.6",
"rareloop/primer-core": "^3.0.0",
"rareloop/primer-frontend": "^1.0.0",
"rareloop/router": "^4.2",
"http-interop/response-sender": "^1.0",
"zendframework/zend-diactoros": "^1.4",
"php-di/php-di": "^6.0",
"gajus/dindent": "^2.0",
"symfony/debug": "^4.2"
},
"autoload": {
"psr-4": {
"App\\": "src"
}
},
"scripts": {
"copy-patterns": "cp -ap ./vendor/rareloop/primer-frontend/twig/patterns ./resources",
"copy-templates": "cp -ap ./vendor/rareloop/primer-frontend/twig/templates ./resources",
"copy-twig-base": "cp ./vendor/rareloop/primer-frontend/twig/views/primer-base.twig ./views",
"server": "App\\ComposerScripts\\Server::run",
"setup": [
"@copy-patterns",
"@copy-templates",
"@copy-twig-base"
],
"post-create-project-cmd": [
"@setup"
]
}
}