-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
32 lines (32 loc) · 973 Bytes
/
composer.json
File metadata and controls
32 lines (32 loc) · 973 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
{
"name": "jedaeroweb/simple_manager",
"description": "simple form application",
"type": "project",
"license": "MIT",
"authors": [
{
"name": "jedaeroweb",
"email": "admin@jedaeroweb.co.kr",
"homepage": "https://www.jedaeroweb.co.kr",
"role": "Developer"
}
],
"require": {
"php": ">=7.2",
"monolog/monolog": "1.2.*",
"twbs/bootstrap": "^5.3"
},
"require-dev": {
"phpunit/phpunit": "*"
},
"suggest": {
"markstory/asset_compress": "An asset compression plugin which provides file concatenation and a flexible filter system for preprocessing and minification.",
"phpunit/phpunit": "Allows automated tests to be run without system-wide install."
},
"scripts": {
"post-update-cmd": [
"rm -rf public/bootstrap",
"cp -R vendor/twbs/bootstrap/dist public/bootstrap"
]
}
}