Skip to content

Commit ab52bba

Browse files
committed
implement serializer, jsonapi parser, resource trait
1 parent 672c084 commit ab52bba

11 files changed

+1942
-116
lines changed

composer.json

Lines changed: 10 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,8 @@
22
"name": "tuyakhov/yii2-json-api",
33
"type": "yii2-extension",
44
"description": "Implementation of JSON API specification for the Yii framework",
5-
"keywords": ["yii2", "json api", "api", "json"],
5+
"keywords": ["yii2", "json api", "api", "json", "rest", "json-api"],
6+
"homepage": "https://github.com/tuyakhov/yii2-json-api",
67
"license": "MIT",
78
"support": {
89
"issues": "https://github.com/tuyakhov/yii2-json-api/issues",
@@ -11,15 +12,20 @@
1112
"authors": [
1213
{
1314
"name": "Anton Tuyakhov",
14-
"email": "atuyakhov@gmail.com"
15+
"email": "atuyakhov@gmail.com",
16+
"role": "Developer"
1517
}
1618
],
1719
"require": {
18-
"yiisoft/yii2": "*"
20+
"yiisoft/yii2": "^2.0.10"
21+
},
22+
"require-dev": {
23+
"phpunit/phpunit": "5.5.*"
1924
},
2025
"autoload": {
2126
"psr-4": {
22-
"tuyakhov\\jsonapi\\": "src/"
27+
"tuyakhov\\jsonapi\\": "src/",
28+
"tuyakhov\\jsonapi\\tests\\": "tests/"
2329
}
2430
}
2531
}

0 commit comments

Comments
 (0)