-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
43 lines (43 loc) · 1.4 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
41
42
43
{
"name": "ilovepdf/ilovepdf-wp",
"description": "iLovePDF Wordpress Plugin",
"type": "wordpress-plugin",
"homepage": "https://ilovepdf.com/",
"license": "GPL-2.0-or-later",
"authors": [
{
"name": "ilovepdf",
"email": "[email protected]"
}
],
"require": {
"php": ">=7.4",
"ilovepdf/ilovepdf-php": "^1.2"
},
"require-dev": {
"phpstan/phpstan": "^2.1",
"szepeviktor/phpstan-wordpress": "^2.0",
"phpstan/extension-installer": "^1.4",
"wp-coding-standards/wpcs": "^3.0"
},
"config": {
"platform-check": false,
"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-ilovepdf.log",
"phpcs": "phpcs -s --ignore=*/node_modules/*,*/vendor/*,*/.github/*,*/assets/*,*/dev/* --report-file=./codesniffer-report-ilovepdf.log ./",
"phpcbf": "phpcbf --ignore=node_modules/,vendor/,assets/,dev/,.github/ ./",
"autoload-dev": "composer dump-autoload",
"autoload-prod": "composer dump-autoload --no-dev"
},
"autoload": {
"psr-4": {
"Ilove_Pdf_Admin\\": "admin",
"Ilove_Pdf_Includes\\": "includes"
}
}
}