-
Notifications
You must be signed in to change notification settings - Fork 19
/
composer-php8.3.json
78 lines (78 loc) · 2.52 KB
/
composer-php8.3.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
74
75
76
77
78
{
"name": "fortawesome/wordpress-fontawesome",
"description": "Official Font Awesome WordPress plugin composer package.",
"keywords": [ "font awesome", "font-awesome", "icon", "icons", "webfont", "svg" ],
"homepage": "https://fontawesome.com",
"license": "GPL-2.0-or-later",
"authors": [
{
"name": "Mike Wilkerson",
"email": "mwilkerson@gmail.com",
"role": "Developer"
}
],
"support": {
"email": "hello@fontawesome.com"
},
"minimum-stability": "beta",
"archive": {
"exclude": [
"/images",
"/assets",
"/integrations",
"/tests",
"/.git",
"/bin",
"/docker",
"/docs",
"/docsrv",
".gitattributes",
".github",
".gitignore",
".travis.yml",
"phpunit.xml.dist",
"phpcs.xml.dist",
"phpdoc.dist.xml",
"readme.txt",
"docker-php-ext-xdebug.ini",
"docker-compose.yml",
"/admin/src/*",
"jest-e2e.config.js",
"admin/webpack.config.js",
"admin/package*.json",
"/compat-js",
"!/compat-js/build",
"webpack.config.js",
".env",
"DEVELOPMENT.md",
"/composer-php*.json",
"/composer-php*.lock",
".editorconfig"
]
},
"require-dev": {
"squizlabs/php_codesniffer": "^3.5.8",
"wp-coding-standards/wpcs": "^2.3.0",
"dealerdirect/phpcodesniffer-composer-installer": "^0.7.0",
"phpunit/phpunit": "^8",
"yoast/phpunit-polyfills": "^1.1",
"yoast/wp-test-utils": "^1.0"
},
"scripts": {
"phpcs": "phpcs --standard=phpcs.xml.dist",
"phpcbf": "phpcbf --standard=phpcs.xml.dist",
"test": "phpunit",
"clean": "rm -fR wp-dist && rm -fR admin/build && rm -fR vendor && rm -f font-awesome.zip",
"build.admin": "cd admin; npm install && npm run build",
"build.compat": "cd compat-js; npm install && npm run build",
"cleandocs": "rm -fR $TMPDIR/phpdoc-twig-cache && rm -fR phpdoc-data && rm -fR docs",
"dist": "composer clean && composer build.admin && composer build.compat"
},
"config": {
"allow-plugins": {
"composer/package-versions-deprecated": true,
"symfony/flex": true,
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}