-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
69 lines (69 loc) · 1.58 KB
/
composer.json
File metadata and controls
69 lines (69 loc) · 1.58 KB
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
{
"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-3.0",
"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.4 || ^8.0",
"michelf/php-markdown": "^2.0"
},
"require-dev": {
"dealerdirect/phpcodesniffer-composer-installer": "^1.1",
"phpcompatibility/php-compatibility": "^9.3",
"phpunit/phpunit": "^6.5 || ^7.5 || ^7.5 || ^9.6 || ^10.5",
"rector/rector": "^2.1",
"roots/wordpress": "^6.8",
"syntatis/coding-standard": "^2.0",
"wp-phpunit/wp-phpunit": "^6.8",
"yoast/phpunit-polyfills": "^4.0"
},
"scripts": {
"format": "vendor/bin/phpcbf || true",
"lint": "vendor/bin/phpcs",
"test": "vendor/bin/phpunit",
"sync-parser-class": [
"@php bin/sync-parser-class",
"vendor/bin/rector",
"@format"
],
"sync-markdown-class": [
"@php bin/sync-markdown-class",
"vendor/bin/rector",
"@format"
]
},
"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"
}