-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
48 lines (48 loc) · 1.27 KB
/
composer.json
File metadata and controls
48 lines (48 loc) · 1.27 KB
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
40
41
42
43
44
45
46
47
48
{
"name": "imarc/millyard",
"type": "library",
"autoload-dev": {
"psr-4": {
"Imarc\\Millyard\\Tests\\": "tests/"
}
},
"authors": [
{
"name": "Dave Anastasi",
"email": "daveanastasi@imarc.com"
}
],
"require": {
"php": ">=8.1",
"league/container": "^4.2",
"symfony/http-foundation": "^6.4",
"vlucas/phpdotenv": "^5.6",
"timber/timber": "^2.3"
},
"require-dev": {
"yoast/wp-test-utils": "^1.0",
"friendsofphp/php-cs-fixer": "^3.64"
},
"autoload": {
"psr-4": {
"Imarc\\Millyard\\": "src/"
},
"files": [
"src/helpers.php"
]
},
"scripts": {
"test": "phpunit",
"test:unit": "phpunit --testsuite=Unit",
"test:integration": "phpunit --testsuite=Integration",
"test:coverage": "phpunit --coverage-html coverage --coverage-clover coverage/clover.xml",
"test:coverage-text": "phpunit --coverage-text",
"cs-check": "php-cs-fixer fix --dry-run --diff --verbose",
"cs-fix": "php-cs-fixer fix --diff --verbose"
},
"config": {
"allow-plugins": {
"roots/wordpress-core-installer": true
}
}
}