-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
39 lines (39 loc) · 1.09 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
{
"name": "italia/spid-wordpress",
"description": "SPID (Sistema Pubblico di Identità Digitale) Wordpress plugin",
"type": "library",
"license": "AGPL-3.0",
"authors": [{
"name": "Paolo Greppi",
"email": "paolo.greppi@libpf.com"
}],
"require": {
"php": ">=7.2",
"italia/spid-php-lib": "^0.35.0",
"dealerdirect/phpcodesniffer-composer-installer": "^0.4.3"
},
"require-dev": {
"squizlabs/php_codesniffer": "*",
"wp-coding-standards/wpcs": "*",
"phpunit/phpunit": "6.*",
"phpcompatibility/phpcompatibility-wp": "^2.0"
},
"scripts": {
"test": [
"phpunit"
],
"phpcs": [
"phpcs -s -p"
],
"phpcbf": [
"phpcbf -p"
]
},
"extra": {
"scripts-description": {
"test": "Run unit tests",
"phpcs": "Analyze code against the WordPress coding standards with PHP_CodeSniffer",
"phpcbf": "Fix coding standards warnings/errors automatically with PHP Code Beautifier"
}
}
}