-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
39 lines (39 loc) · 1.07 KB
/
composer.json
File metadata and controls
39 lines (39 loc) · 1.07 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
{
"name": "techtimo/spotmap",
"description": "Spotmap WordPress plugin",
"version": "1.0.0-rc.4",
"type": "wordpress-plugin",
"require": {
"symfony/yaml": "^7.0",
"brianhenryie/strauss": "^0.27"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.0",
"phpunit/phpunit": "^9.6",
"wp-phpunit/wp-phpunit": "^6.7",
"yoast/phpunit-polyfills": "^4.0"
},
"extra": {
"strauss": {
"target_directory": "vendor-prefixed",
"namespace_prefix": "Spotmap\\",
"classmap_prefix": "Spotmap_",
"create_autoloader": true,
"packages": [
"symfony/yaml"
]
}
},
"scripts": {
"post-install-cmd": [
"vendor/bin/strauss"
],
"post-update-cmd": [
"vendor/bin/strauss"
],
"test": "phpunit",
"test:coverage": "XDEBUG_MODE=coverage phpunit --coverage-text",
"format": "vendor/bin/php-cs-fixer fix",
"lint": "vendor/bin/php-cs-fixer check"
}
}