-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
46 lines (46 loc) · 1.08 KB
/
composer.json
File metadata and controls
46 lines (46 loc) · 1.08 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
{
"name": "emrl/fire",
"license": "MIT",
"description": "WordPress utilities and helpers",
"authors": [
{
"name": "Corey Worrell",
"email": "cworrell@emrl.com"
}
],
"autoload": {
"psr-4": {
"Fire\\": "src/"
},
"files": [
"src/Core/functions.php",
"src/Path/functions.php",
"src/Post/functions.php",
"src/Post/Type/functions.php",
"src/Term/Taxonomy/functions.php",
"src/Template/functions.php"
]
},
"autoload-dev": {
"psr-4": {
"Fire\\Tests\\": "tests/",
"": "tests/stubs"
}
},
"require": {
"php": ">=8.1"
},
"require-dev": {
"brain/monkey": "^2",
"phpunit/phpunit": "^10",
"friendsofphp/php-cs-fixer": "^3",
"squizlabs/php_codesniffer": "^3"
},
"scripts": {
"test": "@php phpunit",
"lint": [
"@php php-cs-fixer fix --dry-run --diff --verbose",
"@php phpcs"
]
}
}