-
Notifications
You must be signed in to change notification settings - Fork 38
/
composer.json
53 lines (53 loc) · 1.73 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
{
"name": "htmlburger/wpemerge",
"description": "A micro framework which modernizes WordPress as a CMS development by providing tools to implement MVC and more.",
"type": "library",
"keywords": ["wordpress", "framework", "controller", "template", "view", "request", "response", "middleware", "wpemerge"],
"license": "GPL-2.0-only",
"homepage": "https://wpemerge.com/",
"authors": [
{
"name": "Atanas Angelov",
"email": "[email protected]",
"homepage": "https://atanas.dev/",
"role": "Developer"
},
{
"name": "htmlBurger",
"email": "[email protected]",
"homepage": "http://htmlburger.com/",
"role": "Developer"
}
],
"support": {
"source": "https://github.com/htmlburger/wpemerge",
"issues": "https://github.com/htmlburger/wpemerge/issues",
"email": "[email protected]"
},
"require": {
"php": ">=5.5",
"pimple/pimple": "^3.2",
"guzzlehttp/psr7": "^1.5",
"psr/container": "^1.0.0"
},
"require-dev": {
"filp/whoops": "^2.2",
"squizlabs/php_codesniffer": "^3.3",
"phpcompatibility/php-compatibility": "^9.0",
"mockery/mockery": "^0.9.11|~1.3.2"
},
"autoload": {
"psr-4": {
"WPEmerge\\": "src/",
"WPEmergeTestTools\\": "tests/tools"
},
"files": [
"config.php"
]
},
"scripts": {
"lint": "phpcs",
"install-test-env": "WPEMERGE_PHP_VER=$(php -r 'echo PHP_MAJOR_VERSION . \".\" . PHP_MINOR_VERSION;') && if [ \"$WPEMERGE_PHP_VER\" \\> \"7.1\" ] && [ \"$WPEMERGE_PHP_VER\" \\< \"8.0\" ]; then composer require --dev phpunit/phpunit:^7 yoast/phpunit-polyfills; else composer require --dev phpunit/phpunit yoast/phpunit-polyfills; fi",
"test": "phpunit --coverage-clover=./tmp/clover.xml"
}
}