-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
36 lines (36 loc) · 1.03 KB
/
composer.json
File metadata and controls
36 lines (36 loc) · 1.03 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
{
"name": "rwsite/wp-addon-plugin",
"description": "Massive Addon for WordPress;",
"license": "MIT",
"type": "wordpress-plugin",
"authors": [
{
"name": "Aleksei Tikhomirov",
"email": "alex@rwsite.ru"
}
],
"require": {
},
"require-dev": {
"phpunit/phpunit": "^10.0",
"mockery/mockery": "^1.4",
"pestphp/pest": "^2.0",
"fakerphp/faker": "^1.23"
},
"autoload": {
"psr-4": {
"WpAddon\\": "src/",
"WpAddon\\Tests\\": "tests/"
},
"classmap": ["functions/"]
},
"scripts": {
"test": "pest tests/Unit/LazyLoadingTest.php tests/Unit/FactoriesTest.php tests/Unit/ModuleSystemTest.php tests/Unit/ExampleTest.php tests/Feature/SmokeTest.php tests/Feature/ExampleTest.php",
"test:coverage": "pest --coverage tests/Unit/LazyLoadingTest.php tests/Unit/FactoriesTest.php tests/Unit/ModuleSystemTest.php tests/Unit/ExampleTest.php tests/Feature/SmokeTest.php tests/Feature/ExampleTest.php"
},
"config": {
"allow-plugins": {
"pestphp/pest-plugin": true
}
}
}