generated from devgeniem/tms-plugin-boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
45 lines (45 loc) · 1.63 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": "devgeniem/tms-plugin-news-importer",
"type": "wordpress-plugin",
"license": "GPL-3.0-or-later",
"description": "Fetch news from tampere.fi api",
"homepage": "https://geniem.com",
"authors": [
{
"name": "Mika Miinalainen",
"role": "Developer",
"homepage": "https://github.com/mikeminish"
}
],
"minimum-stability": "stable",
"keywords": [
"wordpress", "wp", "plugin"
],
"require": {
"php": "^8.1",
"composer/installers": "^v1.10.0",
"symfony/dom-crawler": "^5.4",
"symfony/css-selector": "^5.4"
},
"autoload": {
"psr-4": {"TMS\\Plugin\\NewsImporter\\": "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 --ignore=node_modules/ --runtime-set minimum_supported_wp_version 6.0",
"lint-all": "vendor/bin/phpcs --standard=phpcs.xml.dist src/ --ignore=node_modules/ --runtime-set minimum_supported_wp_version 6.0",
"lint-fix": "vendor/bin/phpcbf --standard=phpcs.xml.dist --basepath=. .src/ --ignore=node_modules/ --runtime-set minimum_supported_wp_version 6.0"
},
"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
}
}
}