Skip to content
This repository was archived by the owner on May 30, 2023. It is now read-only.

Commit 9b28cda

Browse files
author
Robert Kummer
committed
initial commit
1 parent 9ee6c6e commit 9b28cda

File tree

3 files changed

+39
-1
lines changed

3 files changed

+39
-1
lines changed

.gitignore

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# Created by .ignore support plugin (hsz.mobi)
2+
.idea
3+
composer.lock

README.md

+4-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,5 @@
1-
# laravel-json-api
1+
# JSON Api
2+
23
JSON Api Package for Laravel
4+
5+
[![Latest Stable Version](https://poser.pugx.org/ipunkt/laravel-json-api/v/stable.svg)](https://packagist.org/packages/ipunkt/laravel-json-api) [![Latest Unstable Version](https://poser.pugx.org/ipunkt/laravel-json-api/v/unstable.svg)](https://packagist.org/packages/ipunkt/laravel-json-api) [![License](https://poser.pugx.org/ipunkt/laravel-json-api/license.svg)](https://packagist.org/packages/ipunkt/laravel-json-api) [![Total Downloads](https://poser.pugx.org/ipunkt/laravel-json-api/downloads.svg)](https://packagist.org/packages/ipunkt/laravel-json-api)

composer.json

+32
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
{
2+
"name": "ipunkt/laravel-json-api",
3+
"description": "JSON Api Package for Laravel",
4+
"type": "library",
5+
"require": {
6+
"php": ">=7.0",
7+
"illuminate/support": "^5.2",
8+
"illuminate/contracts": "^5.2",
9+
"illuminate/http": "^5.2",
10+
"illuminate/database": "^5.2",
11+
"illuminate/container": "^5.2",
12+
"illuminate/routing": "^5.2",
13+
"tobscure/json-api": "^0.3.0",
14+
"tymon/jwt-auth": "0.5.9"
15+
},
16+
"autoload": {
17+
"psr-4": {
18+
"Ipunkt\\LaravelJsonApi\\": "src/"
19+
},
20+
"files": [
21+
"src/helpers.php"
22+
]
23+
},
24+
"license": "MIT",
25+
"authors": [
26+
{
27+
"name": "Robert Kummer",
28+
"email": "[email protected]"
29+
}
30+
],
31+
"minimum-stability": "stable"
32+
}

0 commit comments

Comments
 (0)