-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathcomposer.json
43 lines (43 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
42
43
{
"name": "publishpress/publishpress-checklists",
"type": "wordpress-plugin",
"description": "",
"license": "GPL-2",
"authors": [
{
"name": "PublishPress",
"email": "[email protected]"
}
],
"config": {
"preferred-install": "dist"
},
"repositories": [
],
"require": {
"php": ">=7.2.5"
},
"require-dev": {
"codeception/module-asserts": "^1.2",
"codeception/module-phpbrowser": "^1.0",
"codeception/module-db": "^1.0",
"codeception/util-universalframework": "^1.0",
"overtrue/phplint": "^2.4"
},
"scripts": {
"build": "ppbuild build",
"build:dir": "ppbuild build-dir",
"build:clean": "ppbuild clean",
"get-version": "ppbuild version",
"check:longpath": "longpath .",
"pre-autoload-dump": "composer dumpautoload --working-dir=./lib",
"pre-update-cmd": "composer update --working-dir=./lib",
"pre-install-cmd": "composer install --working-dir=./lib"
},
"minimum-stability": "stable",
"extra": {
"plugin-slug": "publishpress-checklists",
"plugin-name": "publishpress-checklists",
"plugin-folder": "publishpress-checklists"
}
}