generated from WildCodeSchool/simple-mvc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
executable file
·39 lines (39 loc) · 1 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
{
"name": "wildcodeschool/simple-mvc",
"description": "Simple from scratch PHP MVC for WildCodeSchool students",
"authors": [
{
"name": "Aurelien",
"email": "aurelien.barbier@wildcodeschool.com"
}
],
"minimum-stability": "stable",
"require": {
"twig/twig": "^3.5.1",
"ext-pdo": "*",
"ckeditor/ckeditor": "dev-standard/4.10.x"},
"require-dev": {
"filp/whoops": "^2.15",
"phpmd/phpmd": "^2.13",
"phpro/grumphp": "^1.9",
"phpstan/phpstan": "^1.10.7",
"squizlabs/php_codesniffer": "^3.7.2"
},
"autoload": {
"psr-4": {
"App\\": "src/"
}
},
"config": {
"allow-plugins": {
"phpro/grumphp": true
}
},
"scripts": {
"post-install-cmd": [
"rm -rf public/assets/ckeditor",
"mkdir public/assets/ckeditor",
"cp -rf vendor/ckeditor/ckeditor/ public/assets/ckeditor/."
]
}
}