-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.base.json
48 lines (48 loc) · 1.19 KB
/
composer.base.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
{
"name": "wordpress/components",
"type": "library",
"description": "WordPress Components",
"keywords": ["wordpress", "components"],
"homepage": "https://wordpress.org",
"license": "GPL-2.0-or-later",
"authors": [
{
"name": "Adam Zielinski",
"email": "adam@adamziel.com"
},
{
"name": "WordPress Team",
"email": "wordpress@wordpress.org"
}
],
"require": {
"php": ">=7.2",
"ext-json": "*",
"wikimedia/composer-merge-plugin": "v2.x-dev"
},
"require-dev": {
"yoast/phpunit-polyfills": "2.0.0"
},
"autoload": {
"exclude-from-classmap": [
"**/Tests/",
"**/bin/"
]
},
"scripts": {
"regenerate-composer": "php bin/regenerate_composer.json.php",
"test": "phpunit -c phpunit.xml",
"lint": "phpcs --standard=WordPress .",
"lint-fix": "phpcbf --standard=WordPress ."
},
"repositories": [
{
"type": "path",
"url": "components/*",
"options": {
"symlink": true
}
}
],
"minimum-stability": "dev"
}