-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathcomposer.json
31 lines (31 loc) · 1005 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
31
{
"repositories": [{
"type": "vcs",
"url": "https://github.com/City-of-Bloomington/blossom-lib"
}],
"require": {
"php": ">=8.1",
"michelf/php-markdown": "@stable",
"aura/router": "~3",
"google/apiclient": "~2.0",
"apereo/phpcas": "@stable",
"graylog2/gelf-php": "~1",
"laminas/laminas-db": "@stable",
"laminas/laminas-log": "@stable",
"laminas/laminas-paginator": "@stable",
"laminas/laminas-permissions-acl": "@stable",
"solarium/solarium": "@stable",
"symfony/event-dispatcher": "@stable"
},
"require-dev": {
"phpunit/phpunit": "~9.0"
},
"autoload": {
"psr-4": {
"Application\\": "src/Application",
"Domain\\": "src/Domain",
"Test\\": "src/Test",
"Web\\": "src/Web"
}
}
}