-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathcomposer.json
43 lines (43 loc) · 1.5 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
{
"name": "sybrew/the-seo-framework-extension-manager",
"description": "A WordPress plugin that allows you to manage extensions for The SEO Framework.",
"keywords": [
"seo",
"wordpress",
"plugin"
],
"type": "wordpress-plugin",
"license": "GPL-3.0-only",
"homepage": "https://theseoframework.com/extension-manager/",
"authors": [
{
"name": "Sybre Waaijer",
"email": "[email protected]",
"homepage": "https://cyberwire.nl/",
"role": "Developer"
}
],
"require": {
"php": "~7.3 || ^8.0 || ^8.1",
"composer/installers": "^1.0 || ^2.0"
},
"require-dev": {
"dealerdirect/phpcodesniffer-composer-installer": "0.5.0",
"wp-coding-standards/wpcs": "2.1.0",
"sirbrillig/phpcs-variable-analysis": "2.6.4",
"phpcompatibility/phpcompatibility-wp": "2.0.0"
},
"scripts": {
"php:compatibility": "composer install && vendor/bin/phpcs -p -s --runtime-set testVersion '5.2-' --standard=PHPCompatibilityWP --ignore=docker,tools,tests,node_modules,vendor --extensions=php",
"php:lint": "composer install && vendor/bin/phpcs -p -s",
"php:autofix": "composer install && vendor/bin/phpcbf",
"php:lint:errors": "composer install && vendor/bin/phpcs -p -s --runtime-set ignore_warnings_on_exit 1"
},
"support": {
"docs": "https://theseoframework.com/docs/",
"issues": "https://github.com/sybrew/The-SEO-Framework-Extension-Manager/issues/new/choose",
"source": "https://github.com/sybrew/The-SEO-Framework-Extension-Manager"
},
"minimum-stability": "dev",
"prefer-stable": true
}