-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
45 lines (45 loc) · 1.02 KB
/
composer.json
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
{
"name": "widoz/konomi",
"description": "A WordPress plugin to save posts as favorite using the new Interactive API",
"type": "wordpress-plugin",
"license": "GPL-2.0-or-later",
"authors": [
{
"name": "guido scialfa",
"email": "[email protected]"
}
],
"minimum-stability": "stable",
"require": {
"php": ">=8.1",
"inpsyde/modularity": "^1.5"
},
"require-dev": {
"inpsyde/php-coding-standards": "^1.0",
"roots/wordpress-no-content": "^6.5",
"vimeo/psalm": "^5.23",
"pestphp/pest": "^2.34",
"brain/monkey": "^2.6",
"mockery/mockery": "^1.6"
},
"autoload": {
"psr-4": {
"Widoz\\Wp\\Konomi\\": "sources/"
}
},
"config": {
"platform": {
"php": "8.1"
},
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"pestphp/pest-plugin": true
}
},
"scripts": {
"cs": "@php ./vendor/squizlabs/php_codesniffer/bin/phpcs",
"cs:fix": "@php ./vendor/squizlabs/php_codesniffer/bin/phpcbf",
"psalm": "@php ./vendor/bin/psalm",
"test": "@php ./vendor/bin/pest"
}
}