-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
46 lines (46 loc) · 1.39 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
46
{
"name": "tampere/tms-plugin-materials",
"type": "wordpress-plugin",
"license": "GPL-3.0-or-later",
"description": "Material CPT",
"homepage": "https://geniem.com",
"authors": [
{
"name": "Ville Viklund",
"role": "Developer",
"homepage": "https://github.com/ville6000"
}
],
"minimum-stability": "stable",
"keywords": [
"wordpress", "wp", "plugin"
],
"require": {
"php": ">=7.4|^8",
"composer/installers": "^v1.10.0",
"devgeniem/dustpress": "^1.33"
},
"autoload": {
"psr-4": {
"TMS\\Plugin\\Materials\\": "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/"
},
"config": {
"allow-plugins": {
"composer/installers": true,
"dealerdirect/phpcodesniffer-composer-installer": true,
"koodimonni/composer-dropin-installer": true,
"johnpbloch/wordpress-core-installer": true,
"ergebnis/composer-normalize": true
}
}
}