-
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) · 992 Bytes
/
Copy pathcomposer.json
File metadata and controls
36 lines (36 loc) · 992 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": "ryansechrest/charm",
"description": "Charm is a modern framework for working with WordPress data through object-oriented models.",
"type": "wordpress-plugin",
"license": "GPL-3.0",
"authors": [
{
"name": "Ryan Sechrest"
}
],
"minimum-stability": "stable",
"require-dev": {
"phpunit/phpunit": "^12.1"
},
"scripts": {
"db:reset": [
"export $(grep -v '^#' .env | xargs) && export MYSQL_PWD=\"$DB_PASS\" && mysql -u \"$DB_USER\" \"$DB_NAME\" < tests/charm.sql"
],
"test:all": [
"./vendor/bin/phpunit"
],
"test:debug": [
"./vendor/bin/phpunit --debug"
],
"test:unit": [
"./vendor/bin/phpunit --testsuite unit"
],
"test:integration": [
"./vendor/bin/phpunit --testsuite integration"
],
"test": [
"@db:reset",
"@test:all"
]
}
}