-
Notifications
You must be signed in to change notification settings - Fork 3
/
composer.json
40 lines (40 loc) · 1.35 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
{
"name": "ilovepdf/iloveimg-wp-compress",
"description": "iLoveIMG Wordpress Plugin",
"type": "wordpress-plugin",
"homepage": "https://www.iloveimg.com/",
"license": "GPL-2.0-or-later",
"authors": [
{
"name": "ilovepdf",
"email": "info@ilovepdf.com"
}
],
"require": {
"ilovepdf/iloveimg-php": "dev-master"
},
"require-dev": {
"phpstan/phpstan": "^1.12",
"szepeviktor/phpstan-wordpress": "^1.3",
"phpstan/extension-installer": "^1.4",
"wp-coding-standards/wpcs": "^3.0"
},
"config": {
"allow-plugins": {
"phpstan/extension-installer": true,
"dealerdirect/phpcodesniffer-composer-installer": true
}
},
"scripts": {
"stan": "vendor/bin/phpstan analyse --memory-limit=-1 --error-format=table > ./phpstan-report-iloveimg.log",
"phpcs": "phpcs -s --ignore=*/node_modules/*,*/vendor/*,*/iloveimg-php/*,*/.github/*,*/assets/*,*/dev/* --report-file=./codesniffer-report-iloveimg.log ./",
"phpcbf": "phpcbf --ignore=node_modules/,vendor/,iloveimg-php/,assets/,dev/,.github/ ./",
"autoload-dev": "composer dump-autoload",
"autoload-prod": "composer dump-autoload --no-dev"
},
"autoload": {
"psr-4": {
"Ilove_Img_Compress\\": "admin"
}
}
}