generated from helsingborg-stad/Wordpress-Plugin-Boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
30 lines (30 loc) · 840 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
{
"name": "helsingborg-stad/component-library",
"type": "wordpress-muplugin",
"description": "A library of components for use in WordPress",
"license": "MIT",
"authors": [
{
"name": "Eric Rosenborg",
"email": "[email protected]"
}
],
"scripts": {
"test": "vendor/bin/phpunit --testdox -c phpunit.xml",
"test:coverage": "XDEBUG_MODE=coverage vendor/bin/phpunit --coverage-html .coverage/html --coverage-clover .coverage/clover.xml"
},
"require": {
"php": "^8.0",
"helsingborg-stad/blade": "^3.5.0"
},
"require-dev": {
"phpunit/phpunit": "^9.6",
"mockery/mockery": "^1.6"
},
"autoload": {
"psr-4": {
"ComponentLibrary\\": "source/php/"
}
},
"version": "4.48.3"
}