-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
executable file
·45 lines (45 loc) · 1.12 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
{
"name": "reliv/pipe-rat",
"description": "Create REST APIs with just a few lines of config. This PSR7 compliant PHP library uses Zend\\Stragility Middleware at its core.",
"type": "library",
"license": "BSD-3-Clause",
"keywords": [
"reliv",
"middleware",
"rest",
"module",
"api"
],
"minimum-stability": "stable",
"homepage": "https://github.com/reliv/pipe-rat",
"authors": [
{
"name": "James Jervis",
"email": "[email protected]",
"homepage": "https://github.com/jerv13"
},
{
"name": "Rod McNew",
"email": "[email protected]",
"homepage": "https://github.com/rodmcnew"
}
],
"require": {
"php": ">=5.5",
"zendframework/zend-stratigility": "2.*",
"zendframework/zend-inputfilter": ">=2",
"reliv/zf-config-factories": "3.* || 4.*"
},
"require-dev": {
"phpunit/phpunit": "~5.6"
},
"suggest": {
"rcm/user": "rcm/user for user and ACL",
"reliv/zf-input-filter-service": "reliv/zf-input-filter-service for input filtering with services"
},
"autoload": {
"psr-4": {
"Reliv\\PipeRat\\": "src/"
}
}
}