-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
73 lines (73 loc) · 1.64 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "syntatis/wp-plugin-readme-parser",
"description": "Retrieve information from WordPress plugin readme files",
"keywords": [
"markdown",
"plugin",
"readme",
"wordpress",
"parser"
],
"homepage": "https://github.com/syntatis/wp-plugin-readme-parser",
"license": "GPL-2.0-or-later",
"authors": [
{
"name": "Thoriq Firdaus",
"homepage": "https://github.com/tfirdaus",
"role": "Developer"
}
],
"autoload": {
"psr-4": {
"Syntatis\\WPPluginReadMeParser\\": "app/"
}
},
"autoload-dev": {
"psr-4": {
"Syntatis\\WPPluginReadMeParser\\Tests\\": "tests/"
}
},
"require": {
"php": ">=7.0",
"michelf/php-markdown": "^1.0"
},
"require-dev": {
"dealerdirect/phpcodesniffer-composer-installer": "^1.0",
"phpcompatibility/php-compatibility": "^9.3",
"phpunit/phpunit": "^6.5 || ^7.5 || ^7.5 || ^9.6 || ^10.5",
"rector/rector": "0.17.10",
"roots/wordpress": "^6.7",
"syntatis/coding-standard": "^1.5",
"wp-phpunit/wp-phpunit": "^6.7",
"yoast/phpunit-polyfills": "^3.0"
},
"scripts": {
"phpcs:fix": "vendor/bin/phpcbf || true",
"phpcs": "vendor/bin/phpcs",
"phpunit": "vendor/bin/phpunit",
"test": [
"@phpcs",
"@phpunit"
],
"sync-parser-class": [
"@php bin/sync-parser-class",
"vendor/bin/rector",
"@phpcs:fix"
],
"sync-markdown-class": [
"@php bin/sync-markdown-class",
"vendor/bin/rector",
"@phpcs:fix"
]
},
"config": {
"sort-packages": true,
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"phpstan/extension-installer": true,
"roots/wordpress-core-installer": true
}
},
"prefer-stable": true,
"minimum-stability": "stable"
}