-
Notifications
You must be signed in to change notification settings - Fork 7
/
composer.json
37 lines (35 loc) · 911 Bytes
/
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
{
"repositories": [
{
"packagist.org": false,
"type": "path",
"url": "../modules/*",
"options": {
"symlink": true
}
}
],
"require": {
"shortpixel/notices":">=1.3",
"shortpixel/build" : "@dev",
"shortpixel/shortq": ">=1.0",
"shortpixel/replacer": ">=1.0"
},
"require-dev": {
"phpunit/phpunit": "^9",
"mikey179/vfsstream": "^1",
"10up/wp_mock": "@dev",
"phpunitgen/console": "^6.0"
},
"autoload": {
"psr-4": { "ShortPixel\\" : "class" , "ShortPixel\\Tests\\" : "tests"}
},
"scripts": {
"post-update-cmd" : "\\ShortPixel\\Build\\Build::BuildIt",
"buildSP" : "\\ShortPixel\\Build\\Build::BuildIt",
"buildLoader": "\\ShortPixel\\BuildAutoLoader::buildJSON"
},
"extra": {
"targetNamespace" : "ShortPixel"
}
}