-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
36 lines (36 loc) · 804 Bytes
/
composer.json
File metadata and controls
36 lines (36 loc) · 804 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
{
"name": "sy/bootstrap-cms",
"description": "Plugin for adding CMS feature",
"type": "library",
"require": {
"php": ">=7",
"sy/bootstrap": "*",
"scssphp/scssphp": "*",
"masterminds/html5": "^2.8"
},
"license": "MIT",
"authors": [
{
"name": "Syone",
"email": "syone7@gmail.com"
}
],
"autoload": {
"psr-4": {
"Sy\\Bootstrap\\": "src/"
}
},
"require-dev": {
"phpunit/phpunit": "^10"
},
"autoload-dev": {
"psr-4": {
"Sy\\Test\\": "tests/"
}
},
"scripts": {
"test": "phpunit --bootstrap tests/conf.php --coverage-text --coverage-filter src tests",
"mysql-start": "sudo docker run --name sytest-mysql --rm -e MYSQL_ROOT_PASSWORD=password -e MYSQL_DATABASE=sytest -d -p 127.0.0.1:3333:3306 mysql:latest",
"mysql-stop": "sudo docker stop sytest-mysql"
}
}