-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
41 lines (41 loc) · 1.13 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
{
"name": "bracketspace/easy-watermark",
"type": "wordpress-plugin",
"scripts": {
"analyse": "phpstan analyse",
"phpcompat": "phpcs --standard=PHPCompatibility --runtime-set testVersion 7.0 easy-watermark.php src/",
"phplint": "parallel-lint --exclude node_modules --exclude vendor --exclude assets .",
"phpcbf": "phpcbf",
"phpcs": "phpcs"
},
"require": {
"composer/installers": "v1.0.6",
"micropackage/requirements": "^1.0",
"micropackage/singleton": "^1.1",
"php": ">=5.6.0"
},
"require-dev": {
"dealerdirect/phpcodesniffer-composer-installer": "^0.7.0",
"php-parallel-lint/php-parallel-lint": "^1.2",
"phpcompatibility/php-compatibility": "^9.1",
"rector/rector": "^0.9.31",
"szepeviktor/phpstan-wordpress": "^0.7.4",
"typisttech/imposter-plugin": "^0.6.2",
"wp-coding-standards/wpcs": "^2.0"
},
"autoload": {
"psr-4": {
"EasyWatermark\\": "src/classes"
}
},
"extra": {
"imposter": {
"namespace": "EasyWatermark\\Vendor",
"excludes": [
"roots/wordpress",
"wp-phpunit/wp-phpunit"
]
},
"wordpress-install-dir": "tests/_wordpress"
}
}