-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
48 lines (48 loc) · 1.09 KB
/
composer.json
File metadata and controls
48 lines (48 loc) · 1.09 KB
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
{
"name": "omgpress/omgcore",
"version": "0.1.15",
"type": "wordpress-library",
"description": "Library for developing WordPress plugins and themes",
"homepage": "https://omgpress.com/omgcore",
"license": "GPL-2.0-or-later",
"authors": [
{
"name": "OmgPress",
"email": "hello@omgpress.com",
"homepage": "https://omgpress.com"
}
],
"keywords": [
"wordpress"
],
"config": {
"platform-check": false,
"optimize-autoloader": true,
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"phpdocumentor/shim": true
}
},
"autoload": {
"psr-4": {
"OmgCore\\": "inc/"
}
},
"require": {
"php": ">=7.4.0"
},
"require-dev": {
"wp-coding-standards/wpcs": "^3.1.0",
"phpunit/phpunit": "^9.6.23",
"yoast/phpunit-polyfills": "^3.1.2",
"phpdocumentor/shim": "^3.8",
"omgpress/phpdoc-tpl": "^0.1.0"
},
"scripts": {
"no-dev": "composer install --no-dev",
"lint": "phpcs",
"fix": "phpcbf",
"tests": "./vendor/bin/phpunit",
"create-doc": "vendor/bin/phpdoc run"
}
}