-
Notifications
You must be signed in to change notification settings - Fork 8
/
composer.json
60 lines (60 loc) · 1.71 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
{
"name": "codeinwp/optimole-wp",
"description": "Cloud-based image optimization service - WordPress Integration",
"homepage": "https://optimole.com",
"license": "GPL-2.0+",
"version": "1.1.2",
"authors": [
{
"name": "Optimole Team",
"email": "[email protected]",
"homepage": "https://optimole.com"
}
],
"support": {
"issues": "https://github.com/Codeinwp/optimole-wp/issues",
"source": "https://github.com/Codeinwp/optimole-wp"
},
"autoload": {
"files": [
"vendor/codeinwp/themeisle-sdk/load.php"
]
},
"autoload-dev": {
"files": [
"vendor/codeinwp/themeisle-sdk/load.php",
"development.php"
]
},
"config": {
"optimize-autoloader": true,
"platform": {
"php": "7.4"
},
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
},
"require-dev": {
"squizlabs/php_codesniffer": "^3.3",
"wp-coding-standards/wpcs": "^3.1.0",
"dealerdirect/phpcodesniffer-composer-installer": "^0.7.0",
"yoast/phpunit-polyfills": "^2.0",
"phpstan/phpstan": "^1.10",
"szepeviktor/phpstan-wordpress": "^1.3",
"php-stubs/wp-cli-stubs": "^2.8"
},
"scripts": {
"format": "phpcbf --standard=phpcs.xml --report-summary --report-source",
"phpcs": "phpcs --standard=phpcs.xml --extensions=php -s -d memory_limit=-1",
"phpstan": "phpstan analyse --memory-limit=-1",
"phpunit": "phpunit --configuration=phpunit.xml",
"install-wp-tests": "bash bin/install-wp-tests.sh wordpress_tests root root 127.0.0.1 latest true"
},
"require": {
"php": ">=7.4",
"codeinwp/themeisle-sdk": "^3.3",
"codeinwp/optimole-sdk": "^1.2",
"enshrined/svg-sanitize": "^0.20.0"
}
}