-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
34 lines (34 loc) · 1.01 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
{
"name": "tampere/tms-plugin-boilerplate",
"type": "wordpress-plugin",
"license": "GPL-3.0-or-later",
"description": "{{plugin-description}}",
"homepage": "https://geniem.com",
"authors": [
{
"name": "Your Name",
"role": "Developer",
"homepage": "https://github.com/yourname"
}
],
"minimum-stability": "stable",
"keywords": [
"wordpress", "wp", "plugin"
],
"require": {
"php": ">=7.4|^8",
"composer/installers": "^v1.10.0"
},
"autoload": {
"psr-4": {"Tms\\Plugin\\Boilerplate\\": "src/"}
},
"require-dev": {
"roave/security-advisories": "dev-latest",
"devgeniem/geniem-rules-codesniffer": "^1"
},
"scripts": {
"lint": "vendor/bin/phpcs --standard=phpcs.xml.dist src/ -s --warning-severity=0",
"lint-all": "vendor/bin/phpcs --standard=phpcs.xml.dist src/",
"lint-fix": "vendor/bin/phpcbf --standard=phpcs.xml.dist --basepath=. .src/"
}
}