forked from helsingborg-stad/component-library
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
40 lines (40 loc) · 1.16 KB
/
composer.json
File metadata and controls
40 lines (40 loc) · 1.16 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
{
"name": "helsingborg-stad/component-library",
"type": "wordpress-muplugin",
"description": "A library of components for use in WordPress",
"license": "MIT",
"authors": [
{
"name": "Eric Rosenborg",
"email": "eric.rosenborg@hiq.se"
}
],
"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",
"lint": "vendor/bin/mago lint",
"fix": "vendor/bin/mago lint --format-after-fix --fix",
"format": "vendor/bin/mago fmt"
},
"require": {
"php": "^8.0",
"helsingborg-stad/blade": "^3.5.0",
"helsingborg-stad/wpservice": "^2.0"
},
"require-dev": {
"phpunit/phpunit": "^9.6",
"mockery/mockery": "^1.6",
"carthage-software/mago": "^1.0.0-rc.3"
},
"autoload": {
"psr-4": {
"ComponentLibrary\\": "source/php/"
}
},
"version": "4.63.1",
"config": {
"allow-plugins": {
"carthage-software/mago": true
}
}
}