-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
32 lines (32 loc) · 922 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
32
{
"name": "jacobemerick/comment-service",
"description": "Dandy little service to handle basic comment requests",
"keywords": ["service", "comment", "rest"],
"license": "MIT",
"authors": [
{
"name": "Jacob Emerick"
}
],
"require": {
"php": ">=7.0",
"aura/di": "^3.1",
"aura/sql": "^2.5",
"avalanche-development/peel": "^0.3",
"avalanche-development/swagger-router-middleware": "^1.2",
"avalanche-development/talus": "^1.8",
"container-interop/container-interop": "^1.1",
"jacobemerick/archangel": "^2.1",
"psr/http-message": "^1.0",
"monolog/monolog": "^1.19"
},
"require-dev": {
"codeclimate/php-test-reporter": "^0.3",
"phpunit/phpunit": "^5.4"
},
"autoload": {
"psr-4": {
"Jacobemerick\\CommentService\\": "src/"
}
}
}