-
Notifications
You must be signed in to change notification settings - Fork 18
/
composer.json
35 lines (35 loc) · 845 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
33
34
35
{
"name": "tuyakhov/yii2-json-api",
"type": "yii2-extension",
"description": "Implementation of JSON API specification for the Yii framework",
"keywords": ["yii2", "json api", "api", "json", "rest", "json-api"],
"homepage": "https://github.com/tuyakhov/yii2-json-api",
"license": "MIT",
"support": {
"issues": "https://github.com/tuyakhov/yii2-json-api/issues",
"source": "https://github.com/tuyakhov/yii2-json-api"
},
"authors": [
{
"name": "Anton Tuyakhov",
"email": "[email protected]",
"role": "Developer"
}
],
"require": {
"yiisoft/yii2": "^2.0.13"
},
"require-dev": {
"phpunit/phpunit": "5.5.*"
},
"autoload": {
"psr-4": {
"tuyakhov\\jsonapi\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"tuyakhov\\jsonapi\\tests\\": "tests/"
}
}
}