-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
47 lines (47 loc) · 1.26 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
{
"name": "riddlestone/brokkr-portals",
"description": "A Laminas module to pull configuration together for portals, such as a public portal, an admin portal, etc.",
"keywords": [
"config",
"laminas",
"brokkr"
],
"homepage": "/~https://github.com/riddlestone/brokkr-portals",
"type": "library",
"autoload": {
"psr-4": {
"Riddlestone\\Brokkr\\Portals\\": "src/"
}
},
"require": {
"php": "^7.2|^8.0",
"container-interop/container-interop": "^1.2",
"laminas/laminas-component-installer": "^1.0 || ^2.1",
"laminas/laminas-config": "^3.3",
"laminas/laminas-modulemanager": "^2.8",
"laminas/laminas-servicemanager": "^3.4"
},
"autoload-dev": {
"psr-4": {
"Riddlestone\\Brokkr\\Portals\\Test\\": "test/"
}
},
"require-dev": {
"phpunit/phpunit": "^8.4"
},
"extra": {
"zf": {
"component": "Riddlestone\\Brokkr\\Portals"
}
},
"scripts": {
"test": "phpunit --coverage-html=build/coverage"
},
"license": "BSD-3-Clause",
"authors": [
{
"name": "Andrew Riddlestone",
"email": "andrew.riddlestone@gmail.com"
}
]
}