-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
27 lines (27 loc) · 784 Bytes
/
composer.json
File metadata and controls
27 lines (27 loc) · 784 Bytes
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
{
"name": "tembra/jsonapi-errors-php",
"description": "A PHP implementation of JSON API Errors compliant format.",
"keywords": ["json","api","json api","json-api","error","errors"],
"homepage": "https://github.com/tembra/jsonapi-errors-php",
"license": "BSD-3-Clause",
"authors": [
{
"name": "Thieres Tembra",
"email": "tdt@mytdt.com.br",
"homepage": "http://www.mytdt.com.br",
"role": "CEO"
}
],
"require": {
"php": ">=5.4.0",
"neomerx/json-api": "=0.8.8"
},
"suggest": {
"dingo/api": "A RESTful API package for the Laravel and Lumen frameworks."
},
"autoload": {
"psr-4": {
"Mytdt\\JsonApi\\Errors\\": "src/"
}
}
}