mirror of https://github.com/kcal-app/kcal.git
Remove unused JSON:API elements
This commit is contained in:
parent
c33776155a
commit
ebc6f9cdd5
|
@ -1,58 +0,0 @@
|
||||||
<?php
|
|
||||||
|
|
||||||
namespace App\JsonApi\FoodAmounts;
|
|
||||||
|
|
||||||
use CloudCreativity\LaravelJsonApi\Eloquent\AbstractAdapter;
|
|
||||||
use CloudCreativity\LaravelJsonApi\Eloquent\BelongsTo;
|
|
||||||
use CloudCreativity\LaravelJsonApi\Pagination\StandardStrategy;
|
|
||||||
use Illuminate\Database\Eloquent\Builder;
|
|
||||||
use Illuminate\Support\Collection;
|
|
||||||
|
|
||||||
class Adapter extends AbstractAdapter
|
|
||||||
{
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Mapping of JSON API attribute field names to model keys.
|
|
||||||
*
|
|
||||||
* @var array
|
|
||||||
*/
|
|
||||||
protected $attributes = [];
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Mapping of JSON API filter names to model scopes.
|
|
||||||
*
|
|
||||||
* @var array
|
|
||||||
*/
|
|
||||||
protected $filterScopes = [];
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Adapter constructor.
|
|
||||||
*
|
|
||||||
* @param StandardStrategy $paging
|
|
||||||
*/
|
|
||||||
public function __construct(StandardStrategy $paging)
|
|
||||||
{
|
|
||||||
parent::__construct(new \App\Models\FoodAmount(), $paging);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @param Builder $query
|
|
||||||
* @param Collection $filters
|
|
||||||
* @return void
|
|
||||||
*/
|
|
||||||
protected function filter($query, Collection $filters)
|
|
||||||
{
|
|
||||||
$this->filterWithScopes($query, $filters);
|
|
||||||
}
|
|
||||||
|
|
||||||
protected function food(): BelongsTo
|
|
||||||
{
|
|
||||||
return $this->belongsTo();
|
|
||||||
}
|
|
||||||
|
|
||||||
protected function recipe(): BelongsTo
|
|
||||||
{
|
|
||||||
return $this->belongsTo();
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
|
@ -1,70 +0,0 @@
|
||||||
<?php
|
|
||||||
|
|
||||||
namespace App\JsonApi\FoodAmounts;
|
|
||||||
|
|
||||||
use Neomerx\JsonApi\Schema\SchemaProvider;
|
|
||||||
|
|
||||||
class Schema extends SchemaProvider
|
|
||||||
{
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @var string
|
|
||||||
*/
|
|
||||||
protected $resourceType = 'food-amounts';
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @inheritdoc
|
|
||||||
*/
|
|
||||||
public function getId($resource): string
|
|
||||||
{
|
|
||||||
return (string) $resource->getRouteKey();
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @param \App\Models\FoodAmount $resource
|
|
||||||
*
|
|
||||||
* @return array
|
|
||||||
*/
|
|
||||||
public function getAttributes($resource): array
|
|
||||||
{
|
|
||||||
return [
|
|
||||||
'amount' => $resource->amount,
|
|
||||||
'unit' => $resource->unit,
|
|
||||||
'weight' => $resource->weight,
|
|
||||||
'calories' => $resource->calories(),
|
|
||||||
'carbohydrates' => $resource->carbohydrates(),
|
|
||||||
'cholesterol' => $resource->cholesterol(),
|
|
||||||
'fat' => $resource->fat(),
|
|
||||||
'protein' => $resource->protein(),
|
|
||||||
'sodium' => $resource->sodium(),
|
|
||||||
'createdAt' => $resource->created_at,
|
|
||||||
'updatedAt' => $resource->updated_at,
|
|
||||||
];
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @inheritdoc
|
|
||||||
*/
|
|
||||||
public function getRelationships($resource, $isPrimary, array $includeRelationships): array
|
|
||||||
{
|
|
||||||
return [
|
|
||||||
'food' => [
|
|
||||||
self::SHOW_SELF => true,
|
|
||||||
self::SHOW_RELATED => true,
|
|
||||||
self::SHOW_DATA => isset($includeRelationships['food']),
|
|
||||||
self::DATA => function () use ($resource) {
|
|
||||||
return $resource->food;
|
|
||||||
},
|
|
||||||
],
|
|
||||||
'recipe' => [
|
|
||||||
self::SHOW_SELF => true,
|
|
||||||
self::SHOW_RELATED => true,
|
|
||||||
self::SHOW_DATA => isset($includeRelationships['recipe']),
|
|
||||||
self::DATA => function () use ($resource) {
|
|
||||||
return $resource->recipe;
|
|
||||||
},
|
|
||||||
]
|
|
||||||
];
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
|
@ -1,47 +0,0 @@
|
||||||
<?php
|
|
||||||
|
|
||||||
namespace App\JsonApi\Foods;
|
|
||||||
|
|
||||||
use CloudCreativity\LaravelJsonApi\Eloquent\AbstractAdapter;
|
|
||||||
use CloudCreativity\LaravelJsonApi\Pagination\StandardStrategy;
|
|
||||||
use Illuminate\Database\Eloquent\Builder;
|
|
||||||
use Illuminate\Support\Collection;
|
|
||||||
|
|
||||||
class Adapter extends AbstractAdapter
|
|
||||||
{
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Mapping of JSON API attribute field names to model keys.
|
|
||||||
*
|
|
||||||
* @var array
|
|
||||||
*/
|
|
||||||
protected $attributes = [];
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Mapping of JSON API filter names to model scopes.
|
|
||||||
*
|
|
||||||
* @var array
|
|
||||||
*/
|
|
||||||
protected $filterScopes = [];
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Adapter constructor.
|
|
||||||
*
|
|
||||||
* @param StandardStrategy $paging
|
|
||||||
*/
|
|
||||||
public function __construct(StandardStrategy $paging)
|
|
||||||
{
|
|
||||||
parent::__construct(new \App\Models\Food(), $paging);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @param Builder $query
|
|
||||||
* @param Collection $filters
|
|
||||||
* @return void
|
|
||||||
*/
|
|
||||||
protected function filter($query, Collection $filters)
|
|
||||||
{
|
|
||||||
$this->filterWithScopes($query, $filters);
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
|
@ -1,45 +0,0 @@
|
||||||
<?php
|
|
||||||
|
|
||||||
namespace App\JsonApi\Foods;
|
|
||||||
|
|
||||||
use Neomerx\JsonApi\Schema\SchemaProvider;
|
|
||||||
|
|
||||||
class Schema extends SchemaProvider
|
|
||||||
{
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @var string
|
|
||||||
*/
|
|
||||||
protected $resourceType = 'foods';
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @inheritdoc
|
|
||||||
*/
|
|
||||||
public function getId($resource): string
|
|
||||||
{
|
|
||||||
return (string) $resource->getRouteKey();
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @param \App\Models\Food $resource
|
|
||||||
*
|
|
||||||
* @return array
|
|
||||||
*/
|
|
||||||
public function getAttributes($resource): array
|
|
||||||
{
|
|
||||||
return [
|
|
||||||
'name' => $resource->name,
|
|
||||||
'detail' => $resource->detail,
|
|
||||||
'calories' => $resource->calories,
|
|
||||||
'carbohydrates' => $resource->carbohydrates,
|
|
||||||
'cholesterol' => $resource->cholesterol,
|
|
||||||
'fat' => $resource->fat,
|
|
||||||
'protein' => $resource->protein,
|
|
||||||
'sodium' => $resource->sodium,
|
|
||||||
'unitWeight' => $resource->unit_weight,
|
|
||||||
'cupWeight' => $resource->cup_weight,
|
|
||||||
'createdAt' => $resource->created_at,
|
|
||||||
'updatedAt' => $resource->updated_at,
|
|
||||||
];
|
|
||||||
}
|
|
||||||
}
|
|
|
@ -1,53 +0,0 @@
|
||||||
<?php
|
|
||||||
|
|
||||||
namespace App\JsonApi\RecipeSteps;
|
|
||||||
|
|
||||||
use CloudCreativity\LaravelJsonApi\Eloquent\AbstractAdapter;
|
|
||||||
use CloudCreativity\LaravelJsonApi\Eloquent\BelongsTo;
|
|
||||||
use CloudCreativity\LaravelJsonApi\Pagination\StandardStrategy;
|
|
||||||
use Illuminate\Database\Eloquent\Builder;
|
|
||||||
use Illuminate\Support\Collection;
|
|
||||||
|
|
||||||
class Adapter extends AbstractAdapter
|
|
||||||
{
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Mapping of JSON API attribute field names to model keys.
|
|
||||||
*
|
|
||||||
* @var array
|
|
||||||
*/
|
|
||||||
protected $attributes = [];
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Mapping of JSON API filter names to model scopes.
|
|
||||||
*
|
|
||||||
* @var array
|
|
||||||
*/
|
|
||||||
protected $filterScopes = [];
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Adapter constructor.
|
|
||||||
*
|
|
||||||
* @param StandardStrategy $paging
|
|
||||||
*/
|
|
||||||
public function __construct(StandardStrategy $paging)
|
|
||||||
{
|
|
||||||
parent::__construct(new \App\Models\RecipeStep(), $paging);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @param Builder $query
|
|
||||||
* @param Collection $filters
|
|
||||||
* @return void
|
|
||||||
*/
|
|
||||||
protected function filter($query, Collection $filters)
|
|
||||||
{
|
|
||||||
$this->filterWithScopes($query, $filters);
|
|
||||||
}
|
|
||||||
|
|
||||||
protected function recipe(): BelongsTo
|
|
||||||
{
|
|
||||||
return $this->belongsTo();
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
|
@ -1,50 +0,0 @@
|
||||||
<?php
|
|
||||||
|
|
||||||
namespace App\JsonApi\RecipeSteps;
|
|
||||||
|
|
||||||
use Neomerx\JsonApi\Schema\SchemaProvider;
|
|
||||||
|
|
||||||
class Schema extends SchemaProvider
|
|
||||||
{
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @var string
|
|
||||||
*/
|
|
||||||
protected $resourceType = 'recipe-steps';
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @inheritdoc
|
|
||||||
*/
|
|
||||||
public function getId($resource): string
|
|
||||||
{
|
|
||||||
return (string) $resource->getRouteKey();
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @param \App\Models\RecipeStep $resource
|
|
||||||
*
|
|
||||||
* @return array
|
|
||||||
*/
|
|
||||||
public function getAttributes($resource): array
|
|
||||||
{
|
|
||||||
return [
|
|
||||||
'number' => $resource->number,
|
|
||||||
'step' => $resource->step,
|
|
||||||
'createdAt' => $resource->created_at,
|
|
||||||
'updatedAt' => $resource->updated_at,
|
|
||||||
];
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @inheritdoc
|
|
||||||
*/
|
|
||||||
public function getRelationships($resource, $isPrimary, array $includeRelationships): array
|
|
||||||
{
|
|
||||||
return [
|
|
||||||
'recipe' => [
|
|
||||||
self::SHOW_SELF => true,
|
|
||||||
self::SHOW_RELATED => true,
|
|
||||||
]
|
|
||||||
];
|
|
||||||
}
|
|
||||||
}
|
|
|
@ -1,58 +0,0 @@
|
||||||
<?php
|
|
||||||
|
|
||||||
namespace App\JsonApi\Recipes;
|
|
||||||
|
|
||||||
use CloudCreativity\LaravelJsonApi\Eloquent\AbstractAdapter;
|
|
||||||
use CloudCreativity\LaravelJsonApi\Eloquent\HasMany;
|
|
||||||
use CloudCreativity\LaravelJsonApi\Pagination\StandardStrategy;
|
|
||||||
use Illuminate\Database\Eloquent\Builder;
|
|
||||||
use Illuminate\Support\Collection;
|
|
||||||
|
|
||||||
class Adapter extends AbstractAdapter
|
|
||||||
{
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Mapping of JSON API attribute field names to model keys.
|
|
||||||
*
|
|
||||||
* @var array
|
|
||||||
*/
|
|
||||||
protected $attributes = [];
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Mapping of JSON API filter names to model scopes.
|
|
||||||
*
|
|
||||||
* @var array
|
|
||||||
*/
|
|
||||||
protected $filterScopes = [];
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Adapter constructor.
|
|
||||||
*
|
|
||||||
* @param StandardStrategy $paging
|
|
||||||
*/
|
|
||||||
public function __construct(StandardStrategy $paging)
|
|
||||||
{
|
|
||||||
parent::__construct(new \App\Models\Recipe(), $paging);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @param Builder $query
|
|
||||||
* @param Collection $filters
|
|
||||||
* @return void
|
|
||||||
*/
|
|
||||||
protected function filter($query, Collection $filters)
|
|
||||||
{
|
|
||||||
$this->filterWithScopes($query, $filters);
|
|
||||||
}
|
|
||||||
|
|
||||||
protected function foodAmounts(): HasMany
|
|
||||||
{
|
|
||||||
return $this->hasMany();
|
|
||||||
}
|
|
||||||
|
|
||||||
protected function steps(): HasMany
|
|
||||||
{
|
|
||||||
return $this->hasMany();
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
|
@ -1,75 +0,0 @@
|
||||||
<?php
|
|
||||||
|
|
||||||
namespace App\JsonApi\Recipes;
|
|
||||||
|
|
||||||
use Neomerx\JsonApi\Schema\SchemaProvider;
|
|
||||||
|
|
||||||
class Schema extends SchemaProvider
|
|
||||||
{
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @var string
|
|
||||||
*/
|
|
||||||
protected $resourceType = 'recipes';
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @inheritdoc
|
|
||||||
*/
|
|
||||||
public function getId($resource): string
|
|
||||||
{
|
|
||||||
return (string) $resource->getRouteKey();
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @param \App\Models\Recipe $resource
|
|
||||||
*
|
|
||||||
* @return array
|
|
||||||
*/
|
|
||||||
public function getAttributes($resource)
|
|
||||||
{
|
|
||||||
return [
|
|
||||||
'name' => $resource->name,
|
|
||||||
'description' => $resource->description,
|
|
||||||
'servings' => $resource->servings,
|
|
||||||
'caloriesPerServing' => $resource->caloriesPerServing(),
|
|
||||||
'caloriesTotal' => $resource->caloriesTotal(),
|
|
||||||
'carbohydratesPerServing' => $resource->carbohydratesPerServing(),
|
|
||||||
'carbohydratesTotal' => $resource->carbohydratesTotal(),
|
|
||||||
'cholesterolPerServing' => $resource->cholesterolPerServing(),
|
|
||||||
'cholesterolTotal' => $resource->cholesterolTotal(),
|
|
||||||
'fatPerServing' => $resource->fatPerServing(),
|
|
||||||
'fatTotal' => $resource->fatTotal(),
|
|
||||||
'proteinPerServing' => $resource->proteinPerServing(),
|
|
||||||
'proteinTotal' => $resource->proteinTotal(),
|
|
||||||
'sodiumPerServing' => $resource->sodiumPerServing(),
|
|
||||||
'sodiumTotal' => $resource->sodiumTotal(),
|
|
||||||
'createdAt' => $resource->created_at,
|
|
||||||
'updatedAt' => $resource->updated_at,
|
|
||||||
];
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @inheritdoc
|
|
||||||
*/
|
|
||||||
public function getRelationships($resource, $isPrimary, array $includeRelationships): array
|
|
||||||
{
|
|
||||||
return [
|
|
||||||
'steps' => [
|
|
||||||
self::SHOW_SELF => true,
|
|
||||||
self::SHOW_RELATED => true,
|
|
||||||
self::SHOW_DATA => isset($includeRelationships['steps']),
|
|
||||||
self::DATA => function () use ($resource) {
|
|
||||||
return $resource->steps;
|
|
||||||
},
|
|
||||||
],
|
|
||||||
'food-amounts' => [
|
|
||||||
self::SHOW_SELF => true,
|
|
||||||
self::SHOW_RELATED => true,
|
|
||||||
self::SHOW_DATA => isset($includeRelationships['food-amounts']),
|
|
||||||
self::DATA => function () use ($resource) {
|
|
||||||
return $resource->foodAmounts;
|
|
||||||
},
|
|
||||||
]
|
|
||||||
];
|
|
||||||
}
|
|
||||||
}
|
|
|
@ -5,7 +5,6 @@
|
||||||
"license": "MPL-2.0",
|
"license": "MPL-2.0",
|
||||||
"require": {
|
"require": {
|
||||||
"php": "^8.0",
|
"php": "^8.0",
|
||||||
"cloudcreativity/laravel-json-api": "^3.2",
|
|
||||||
"fideloper/proxy": "^4.4",
|
"fideloper/proxy": "^4.4",
|
||||||
"fruitcake/laravel-cors": "^2.0",
|
"fruitcake/laravel-cors": "^2.0",
|
||||||
"guzzlehttp/guzzle": "^7.0.1",
|
"guzzlehttp/guzzle": "^7.0.1",
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
"Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies",
|
"Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies",
|
||||||
"This file is @generated automatically"
|
"This file is @generated automatically"
|
||||||
],
|
],
|
||||||
"content-hash": "a07b94622d4341202658fd3193b35210",
|
"content-hash": "d33692a22f60e4e61e7aa7195979cdfd",
|
||||||
"packages": [
|
"packages": [
|
||||||
{
|
{
|
||||||
"name": "asm89/stack-cors",
|
"name": "asm89/stack-cors",
|
||||||
|
@ -118,97 +118,6 @@
|
||||||
],
|
],
|
||||||
"time": "2020-08-18T23:57:15+00:00"
|
"time": "2020-08-18T23:57:15+00:00"
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"name": "cloudcreativity/laravel-json-api",
|
|
||||||
"version": "v3.2.0",
|
|
||||||
"source": {
|
|
||||||
"type": "git",
|
|
||||||
"url": "https://github.com/cloudcreativity/laravel-json-api.git",
|
|
||||||
"reference": "2189d7d358f2a3b818542eebc36c1e0c7b3e6be6"
|
|
||||||
},
|
|
||||||
"dist": {
|
|
||||||
"type": "zip",
|
|
||||||
"url": "https://api.github.com/repos/cloudcreativity/laravel-json-api/zipball/2189d7d358f2a3b818542eebc36c1e0c7b3e6be6",
|
|
||||||
"reference": "2189d7d358f2a3b818542eebc36c1e0c7b3e6be6",
|
|
||||||
"shasum": ""
|
|
||||||
},
|
|
||||||
"require": {
|
|
||||||
"ext-json": "*",
|
|
||||||
"illuminate/console": "^8.0",
|
|
||||||
"illuminate/contracts": "^8.0",
|
|
||||||
"illuminate/database": "^8.0",
|
|
||||||
"illuminate/filesystem": "^8.0",
|
|
||||||
"illuminate/http": "^8.0",
|
|
||||||
"illuminate/pagination": "^8.0",
|
|
||||||
"illuminate/support": "^8.0",
|
|
||||||
"neomerx/json-api": "^1.0.3",
|
|
||||||
"nyholm/psr7": "^1.2",
|
|
||||||
"php": "^7.3|^8.0",
|
|
||||||
"ramsey/uuid": "^3.0|^4.0",
|
|
||||||
"symfony/psr-http-message-bridge": "^2.0"
|
|
||||||
},
|
|
||||||
"require-dev": {
|
|
||||||
"cloudcreativity/json-api-testing": "^3.1",
|
|
||||||
"ext-sqlite3": "*",
|
|
||||||
"guzzlehttp/guzzle": "^7.0",
|
|
||||||
"laravel/legacy-factories": "^1.0.4",
|
|
||||||
"laravel/ui": "^3.0",
|
|
||||||
"mockery/mockery": "^1.1",
|
|
||||||
"orchestra/testbench": "^6.0",
|
|
||||||
"phpunit/phpunit": "^9.0"
|
|
||||||
},
|
|
||||||
"suggest": {
|
|
||||||
"cloudcreativity/json-api-testing": "Required to use the test helpers."
|
|
||||||
},
|
|
||||||
"type": "library",
|
|
||||||
"extra": {
|
|
||||||
"branch-alias": {
|
|
||||||
"dev-develop": "3.x-dev"
|
|
||||||
},
|
|
||||||
"laravel": {
|
|
||||||
"providers": [
|
|
||||||
"CloudCreativity\\LaravelJsonApi\\ServiceProvider"
|
|
||||||
],
|
|
||||||
"aliases": {
|
|
||||||
"JsonApi": "CloudCreativity\\LaravelJsonApi\\Facades\\JsonApi"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"autoload": {
|
|
||||||
"psr-4": {
|
|
||||||
"CloudCreativity\\LaravelJsonApi\\": "src/"
|
|
||||||
},
|
|
||||||
"files": [
|
|
||||||
"helpers.php"
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"notification-url": "https://packagist.org/downloads/",
|
|
||||||
"license": [
|
|
||||||
"Apache-2.0"
|
|
||||||
],
|
|
||||||
"authors": [
|
|
||||||
{
|
|
||||||
"name": "Cloud Creativity Ltd",
|
|
||||||
"email": "info@cloudcreativity.co.uk"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"description": "JSON API (jsonapi.org) support for Laravel applications.",
|
|
||||||
"homepage": "https://github.com/cloudcreativity/laravel-json-api",
|
|
||||||
"keywords": [
|
|
||||||
"JSON-API",
|
|
||||||
"api",
|
|
||||||
"cloudcreativity",
|
|
||||||
"json",
|
|
||||||
"jsonapi",
|
|
||||||
"jsonapi.org",
|
|
||||||
"laravel"
|
|
||||||
],
|
|
||||||
"support": {
|
|
||||||
"issues": "https://github.com/cloudcreativity/laravel-json-api/issues",
|
|
||||||
"source": "https://github.com/cloudcreativity/laravel-json-api/tree/v3.2.0"
|
|
||||||
},
|
|
||||||
"time": "2020-11-26T11:02:55+00:00"
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"name": "dnoegel/php-xdg-base-dir",
|
"name": "dnoegel/php-xdg-base-dir",
|
||||||
"version": "v0.1.1",
|
"version": "v0.1.1",
|
||||||
|
@ -1565,65 +1474,6 @@
|
||||||
],
|
],
|
||||||
"time": "2020-12-14T13:15:25+00:00"
|
"time": "2020-12-14T13:15:25+00:00"
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"name": "neomerx/json-api",
|
|
||||||
"version": "v1.0.9",
|
|
||||||
"source": {
|
|
||||||
"type": "git",
|
|
||||||
"url": "https://github.com/neomerx/json-api.git",
|
|
||||||
"reference": "c911b7494496e79f9de72ee40d6a2b791caaf95b"
|
|
||||||
},
|
|
||||||
"dist": {
|
|
||||||
"type": "zip",
|
|
||||||
"url": "https://api.github.com/repos/neomerx/json-api/zipball/c911b7494496e79f9de72ee40d6a2b791caaf95b",
|
|
||||||
"reference": "c911b7494496e79f9de72ee40d6a2b791caaf95b",
|
|
||||||
"shasum": ""
|
|
||||||
},
|
|
||||||
"require": {
|
|
||||||
"php": ">=5.5.0",
|
|
||||||
"psr/http-message": "^1.0",
|
|
||||||
"psr/log": "^1.0"
|
|
||||||
},
|
|
||||||
"require-dev": {
|
|
||||||
"mockery/mockery": "~0.9.4",
|
|
||||||
"monolog/monolog": "^1.18",
|
|
||||||
"phpmd/phpmd": "^2.6",
|
|
||||||
"phpunit/phpunit": "^4.6 || ^5.0 || ^6.0",
|
|
||||||
"scrutinizer/ocular": "^1.3",
|
|
||||||
"squizlabs/php_codesniffer": "^2.5"
|
|
||||||
},
|
|
||||||
"type": "library",
|
|
||||||
"autoload": {
|
|
||||||
"psr-4": {
|
|
||||||
"Neomerx\\JsonApi\\": "src/"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"notification-url": "https://packagist.org/downloads/",
|
|
||||||
"license": [
|
|
||||||
"Apache-2.0"
|
|
||||||
],
|
|
||||||
"authors": [
|
|
||||||
{
|
|
||||||
"name": "neomerx",
|
|
||||||
"email": "info@neomerx.com"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"description": "Framework agnostic JSON API (jsonapi.org) implementation",
|
|
||||||
"homepage": "https://github.com/neomerx/json-api",
|
|
||||||
"keywords": [
|
|
||||||
"JSON-API",
|
|
||||||
"api",
|
|
||||||
"json",
|
|
||||||
"jsonapi",
|
|
||||||
"jsonapi.org",
|
|
||||||
"neomerx"
|
|
||||||
],
|
|
||||||
"support": {
|
|
||||||
"issues": "https://github.com/neomerx/json-api/issues",
|
|
||||||
"source": "https://github.com/neomerx/json-api/tree/v1.x"
|
|
||||||
},
|
|
||||||
"time": "2018-02-21T13:45:30+00:00"
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"name": "nesbot/carbon",
|
"name": "nesbot/carbon",
|
||||||
"version": "2.43.0",
|
"version": "2.43.0",
|
||||||
|
@ -1773,83 +1623,6 @@
|
||||||
},
|
},
|
||||||
"time": "2020-12-20T10:01:03+00:00"
|
"time": "2020-12-20T10:01:03+00:00"
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"name": "nyholm/psr7",
|
|
||||||
"version": "1.3.2",
|
|
||||||
"source": {
|
|
||||||
"type": "git",
|
|
||||||
"url": "https://github.com/Nyholm/psr7.git",
|
|
||||||
"reference": "a272953743c454ac4af9626634daaf5ab3ce1173"
|
|
||||||
},
|
|
||||||
"dist": {
|
|
||||||
"type": "zip",
|
|
||||||
"url": "https://api.github.com/repos/Nyholm/psr7/zipball/a272953743c454ac4af9626634daaf5ab3ce1173",
|
|
||||||
"reference": "a272953743c454ac4af9626634daaf5ab3ce1173",
|
|
||||||
"shasum": ""
|
|
||||||
},
|
|
||||||
"require": {
|
|
||||||
"php": ">=7.1",
|
|
||||||
"php-http/message-factory": "^1.0",
|
|
||||||
"psr/http-factory": "^1.0",
|
|
||||||
"psr/http-message": "^1.0"
|
|
||||||
},
|
|
||||||
"provide": {
|
|
||||||
"psr/http-factory-implementation": "1.0",
|
|
||||||
"psr/http-message-implementation": "1.0"
|
|
||||||
},
|
|
||||||
"require-dev": {
|
|
||||||
"http-interop/http-factory-tests": "^0.8",
|
|
||||||
"php-http/psr7-integration-tests": "^1.0",
|
|
||||||
"phpunit/phpunit": "^7.5 || 8.5 || 9.4",
|
|
||||||
"symfony/error-handler": "^4.4"
|
|
||||||
},
|
|
||||||
"type": "library",
|
|
||||||
"extra": {
|
|
||||||
"branch-alias": {
|
|
||||||
"dev-master": "1.0-dev"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"autoload": {
|
|
||||||
"psr-4": {
|
|
||||||
"Nyholm\\Psr7\\": "src/"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"notification-url": "https://packagist.org/downloads/",
|
|
||||||
"license": [
|
|
||||||
"MIT"
|
|
||||||
],
|
|
||||||
"authors": [
|
|
||||||
{
|
|
||||||
"name": "Tobias Nyholm",
|
|
||||||
"email": "tobias.nyholm@gmail.com"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "Martijn van der Ven",
|
|
||||||
"email": "martijn@vanderven.se"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"description": "A fast PHP7 implementation of PSR-7",
|
|
||||||
"homepage": "https://tnyholm.se",
|
|
||||||
"keywords": [
|
|
||||||
"psr-17",
|
|
||||||
"psr-7"
|
|
||||||
],
|
|
||||||
"support": {
|
|
||||||
"issues": "https://github.com/Nyholm/psr7/issues",
|
|
||||||
"source": "https://github.com/Nyholm/psr7/tree/1.3.2"
|
|
||||||
},
|
|
||||||
"funding": [
|
|
||||||
{
|
|
||||||
"url": "https://github.com/Zegnat",
|
|
||||||
"type": "github"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"url": "https://github.com/nyholm",
|
|
||||||
"type": "github"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"time": "2020-11-14T17:35:34+00:00"
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"name": "opis/closure",
|
"name": "opis/closure",
|
||||||
"version": "3.6.1",
|
"version": "3.6.1",
|
||||||
|
@ -1915,60 +1688,6 @@
|
||||||
},
|
},
|
||||||
"time": "2020-11-07T02:01:34+00:00"
|
"time": "2020-11-07T02:01:34+00:00"
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"name": "php-http/message-factory",
|
|
||||||
"version": "v1.0.2",
|
|
||||||
"source": {
|
|
||||||
"type": "git",
|
|
||||||
"url": "https://github.com/php-http/message-factory.git",
|
|
||||||
"reference": "a478cb11f66a6ac48d8954216cfed9aa06a501a1"
|
|
||||||
},
|
|
||||||
"dist": {
|
|
||||||
"type": "zip",
|
|
||||||
"url": "https://api.github.com/repos/php-http/message-factory/zipball/a478cb11f66a6ac48d8954216cfed9aa06a501a1",
|
|
||||||
"reference": "a478cb11f66a6ac48d8954216cfed9aa06a501a1",
|
|
||||||
"shasum": ""
|
|
||||||
},
|
|
||||||
"require": {
|
|
||||||
"php": ">=5.4",
|
|
||||||
"psr/http-message": "^1.0"
|
|
||||||
},
|
|
||||||
"type": "library",
|
|
||||||
"extra": {
|
|
||||||
"branch-alias": {
|
|
||||||
"dev-master": "1.0-dev"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"autoload": {
|
|
||||||
"psr-4": {
|
|
||||||
"Http\\Message\\": "src/"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"notification-url": "https://packagist.org/downloads/",
|
|
||||||
"license": [
|
|
||||||
"MIT"
|
|
||||||
],
|
|
||||||
"authors": [
|
|
||||||
{
|
|
||||||
"name": "Márk Sági-Kazár",
|
|
||||||
"email": "mark.sagikazar@gmail.com"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"description": "Factory interfaces for PSR-7 HTTP Message",
|
|
||||||
"homepage": "http://php-http.org",
|
|
||||||
"keywords": [
|
|
||||||
"factory",
|
|
||||||
"http",
|
|
||||||
"message",
|
|
||||||
"stream",
|
|
||||||
"uri"
|
|
||||||
],
|
|
||||||
"support": {
|
|
||||||
"issues": "https://github.com/php-http/message-factory/issues",
|
|
||||||
"source": "https://github.com/php-http/message-factory/tree/master"
|
|
||||||
},
|
|
||||||
"time": "2015-12-19T14:08:53+00:00"
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"name": "phpoption/phpoption",
|
"name": "phpoption/phpoption",
|
||||||
"version": "1.7.5",
|
"version": "1.7.5",
|
||||||
|
@ -2193,61 +1912,6 @@
|
||||||
},
|
},
|
||||||
"time": "2020-06-29T06:28:15+00:00"
|
"time": "2020-06-29T06:28:15+00:00"
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"name": "psr/http-factory",
|
|
||||||
"version": "1.0.1",
|
|
||||||
"source": {
|
|
||||||
"type": "git",
|
|
||||||
"url": "https://github.com/php-fig/http-factory.git",
|
|
||||||
"reference": "12ac7fcd07e5b077433f5f2bee95b3a771bf61be"
|
|
||||||
},
|
|
||||||
"dist": {
|
|
||||||
"type": "zip",
|
|
||||||
"url": "https://api.github.com/repos/php-fig/http-factory/zipball/12ac7fcd07e5b077433f5f2bee95b3a771bf61be",
|
|
||||||
"reference": "12ac7fcd07e5b077433f5f2bee95b3a771bf61be",
|
|
||||||
"shasum": ""
|
|
||||||
},
|
|
||||||
"require": {
|
|
||||||
"php": ">=7.0.0",
|
|
||||||
"psr/http-message": "^1.0"
|
|
||||||
},
|
|
||||||
"type": "library",
|
|
||||||
"extra": {
|
|
||||||
"branch-alias": {
|
|
||||||
"dev-master": "1.0.x-dev"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"autoload": {
|
|
||||||
"psr-4": {
|
|
||||||
"Psr\\Http\\Message\\": "src/"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"notification-url": "https://packagist.org/downloads/",
|
|
||||||
"license": [
|
|
||||||
"MIT"
|
|
||||||
],
|
|
||||||
"authors": [
|
|
||||||
{
|
|
||||||
"name": "PHP-FIG",
|
|
||||||
"homepage": "http://www.php-fig.org/"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"description": "Common interfaces for PSR-7 HTTP message factories",
|
|
||||||
"keywords": [
|
|
||||||
"factory",
|
|
||||||
"http",
|
|
||||||
"message",
|
|
||||||
"psr",
|
|
||||||
"psr-17",
|
|
||||||
"psr-7",
|
|
||||||
"request",
|
|
||||||
"response"
|
|
||||||
],
|
|
||||||
"support": {
|
|
||||||
"source": "https://github.com/php-fig/http-factory/tree/master"
|
|
||||||
},
|
|
||||||
"time": "2019-04-30T12:38:16+00:00"
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"name": "psr/http-message",
|
"name": "psr/http-message",
|
||||||
"version": "1.0.1",
|
"version": "1.0.1",
|
||||||
|
@ -4420,88 +4084,6 @@
|
||||||
],
|
],
|
||||||
"time": "2020-12-08T17:03:37+00:00"
|
"time": "2020-12-08T17:03:37+00:00"
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"name": "symfony/psr-http-message-bridge",
|
|
||||||
"version": "v2.0.2",
|
|
||||||
"source": {
|
|
||||||
"type": "git",
|
|
||||||
"url": "https://github.com/symfony/psr-http-message-bridge.git",
|
|
||||||
"reference": "51a21cb3ba3927d4b4bf8f25cc55763351af5f2e"
|
|
||||||
},
|
|
||||||
"dist": {
|
|
||||||
"type": "zip",
|
|
||||||
"url": "https://api.github.com/repos/symfony/psr-http-message-bridge/zipball/51a21cb3ba3927d4b4bf8f25cc55763351af5f2e",
|
|
||||||
"reference": "51a21cb3ba3927d4b4bf8f25cc55763351af5f2e",
|
|
||||||
"shasum": ""
|
|
||||||
},
|
|
||||||
"require": {
|
|
||||||
"php": ">=7.1",
|
|
||||||
"psr/http-message": "^1.0",
|
|
||||||
"symfony/http-foundation": "^4.4 || ^5.0"
|
|
||||||
},
|
|
||||||
"require-dev": {
|
|
||||||
"nyholm/psr7": "^1.1",
|
|
||||||
"symfony/phpunit-bridge": "^4.4 || ^5.0"
|
|
||||||
},
|
|
||||||
"suggest": {
|
|
||||||
"nyholm/psr7": "For a super lightweight PSR-7/17 implementation"
|
|
||||||
},
|
|
||||||
"type": "symfony-bridge",
|
|
||||||
"extra": {
|
|
||||||
"branch-alias": {
|
|
||||||
"dev-master": "2.0-dev"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"autoload": {
|
|
||||||
"psr-4": {
|
|
||||||
"Symfony\\Bridge\\PsrHttpMessage\\": ""
|
|
||||||
},
|
|
||||||
"exclude-from-classmap": [
|
|
||||||
"/Tests/"
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"notification-url": "https://packagist.org/downloads/",
|
|
||||||
"license": [
|
|
||||||
"MIT"
|
|
||||||
],
|
|
||||||
"authors": [
|
|
||||||
{
|
|
||||||
"name": "Fabien Potencier",
|
|
||||||
"email": "fabien@symfony.com"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "Symfony Community",
|
|
||||||
"homepage": "http://symfony.com/contributors"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"description": "PSR HTTP message bridge",
|
|
||||||
"homepage": "http://symfony.com",
|
|
||||||
"keywords": [
|
|
||||||
"http",
|
|
||||||
"http-message",
|
|
||||||
"psr-17",
|
|
||||||
"psr-7"
|
|
||||||
],
|
|
||||||
"support": {
|
|
||||||
"issues": "https://github.com/symfony/psr-http-message-bridge/issues",
|
|
||||||
"source": "https://github.com/symfony/psr-http-message-bridge/tree/v2.0.2"
|
|
||||||
},
|
|
||||||
"funding": [
|
|
||||||
{
|
|
||||||
"url": "https://symfony.com/sponsor",
|
|
||||||
"type": "custom"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"url": "https://github.com/fabpot",
|
|
||||||
"type": "github"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
|
|
||||||
"type": "tidelift"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"time": "2020-09-29T08:17:46+00:00"
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"name": "symfony/routing",
|
"name": "symfony/routing",
|
||||||
"version": "v5.2.1",
|
"version": "v5.2.1",
|
||||||
|
|
|
@ -1,207 +0,0 @@
|
||||||
<?php
|
|
||||||
|
|
||||||
return [
|
|
||||||
|
|
||||||
/*
|
|
||||||
|--------------------------------------------------------------------------
|
|
||||||
| Resolver
|
|
||||||
|--------------------------------------------------------------------------
|
|
||||||
|
|
|
||||||
| The API's resolver is the class that works out the fully qualified
|
|
||||||
| class name of adapters, schemas, authorizers and validators for your
|
|
||||||
| resource types. We recommend using our default implementation but you
|
|
||||||
| can override it here if desired.
|
|
||||||
*/
|
|
||||||
'resolver' => \CloudCreativity\LaravelJsonApi\Resolver\ResolverFactory::class,
|
|
||||||
|
|
||||||
/*
|
|
||||||
|--------------------------------------------------------------------------
|
|
||||||
| Root Namespace
|
|
||||||
|--------------------------------------------------------------------------
|
|
||||||
|
|
|
||||||
| The root namespace for JSON API classes for this API. If `null`, the
|
|
||||||
| namespace will default to `JsonApi` within your application's root
|
|
||||||
| namespace (obtained via Laravel's `Application::getNamespace()`
|
|
||||||
| method).
|
|
||||||
|
|
|
||||||
| The `by-resource` setting determines how your units are organised within
|
|
||||||
| your root namespace.
|
|
||||||
|
|
|
||||||
| - true:
|
|
||||||
| - e.g. App\JsonApi\Posts\{Adapter, Schema, Validators}
|
|
||||||
| - e.g. App\JsonApi\Comments\{Adapter, Schema, Validators}
|
|
||||||
| - false:
|
|
||||||
| - e.g. App\JsonApi\Adapters\PostAdapter, CommentAdapter}
|
|
||||||
| - e.g. App\JsonApi\Schemas\{PostSchema, CommentSchema}
|
|
||||||
| - e.g. App\JsonApi\Validators\{PostValidator, CommentValidator}
|
|
||||||
|
|
|
||||||
*/
|
|
||||||
'namespace' => null,
|
|
||||||
'by-resource' => true,
|
|
||||||
|
|
||||||
/*
|
|
||||||
|--------------------------------------------------------------------------
|
|
||||||
| Model Namespace
|
|
||||||
|--------------------------------------------------------------------------
|
|
||||||
|
|
|
||||||
| Here you can decide where your api models live.
|
|
||||||
| By default (i.e. set to null), the package assumes they will live in
|
|
||||||
| your application's root namespace, but you could set it to something
|
|
||||||
| different here. E.g. `App\Models`.
|
|
||||||
|
|
|
||||||
*/
|
|
||||||
'model-namespace' => "App\Models",
|
|
||||||
|
|
||||||
/*
|
|
||||||
|--------------------------------------------------------------------------
|
|
||||||
| Resources
|
|
||||||
|--------------------------------------------------------------------------
|
|
||||||
|
|
|
||||||
| Here you map the list of JSON API resources in your API to the actual
|
|
||||||
| record (model/entity) classes they relate to.
|
|
||||||
|
|
|
||||||
| For example, if you had a `posts` JSON API resource, that related to
|
|
||||||
| an Eloquent model `App\Post`, your mapping would be:
|
|
||||||
|
|
|
||||||
| `'posts' => App\Post::class`
|
|
||||||
*/
|
|
||||||
'resources' => [
|
|
||||||
'foods' => \App\Models\Food::class,
|
|
||||||
'food-amounts' => \App\Models\FoodAmount::class,
|
|
||||||
'recipes' => \App\Models\Recipe::class,
|
|
||||||
'recipe-steps' => \App\Models\RecipeStep::class,
|
|
||||||
],
|
|
||||||
|
|
||||||
/*
|
|
||||||
|--------------------------------------------------------------------------
|
|
||||||
| Eloquent
|
|
||||||
|--------------------------------------------------------------------------
|
|
||||||
|
|
|
||||||
| Whether your JSON API resources predominantly relate to Eloquent models.
|
|
||||||
| This is used by the package's generators.
|
|
||||||
|
|
|
||||||
| You can override the setting here when running a generator. If the
|
|
||||||
| setting here is `true` running a generator with `--no-eloquent` will
|
|
||||||
| override it; if the setting is `false`, then `--eloquent` is the override.
|
|
||||||
|
|
|
||||||
*/
|
|
||||||
'use-eloquent' => true,
|
|
||||||
|
|
||||||
/*
|
|
||||||
|--------------------------------------------------------------------------
|
|
||||||
| URL
|
|
||||||
|--------------------------------------------------------------------------
|
|
||||||
|
|
|
||||||
| The API's url, made up of a host, URL namespace and route name prefix.
|
|
||||||
|
|
|
||||||
| If a JSON API is handling an inbound request, the host will always be
|
|
||||||
| detected from the inbound HTTP request. In other circumstances
|
|
||||||
| (e.g. broadcasting), the host will be taken from the setting here.
|
|
||||||
| If it is `null`, the `app.url` config setting is used as the default.
|
|
||||||
| If you set `host` to `false`, the host will never be appended to URLs
|
|
||||||
| for inbound requests.
|
|
||||||
|
|
|
||||||
| The name setting is the prefix for route names within this API.
|
|
||||||
|
|
|
||||||
*/
|
|
||||||
'url' => [
|
|
||||||
'host' => null,
|
|
||||||
'namespace' => '/api/v1',
|
|
||||||
'name' => 'api:v1:',
|
|
||||||
],
|
|
||||||
|
|
||||||
/*
|
|
||||||
|--------------------------------------------------------------------------
|
|
||||||
| Controllers
|
|
||||||
|--------------------------------------------------------------------------
|
|
||||||
|
|
|
||||||
| The default JSON API controller wraps write operations in transactions.
|
|
||||||
| You can customise the connection for the transaction here. Or if you
|
|
||||||
| want to turn transactions off, set `transactions` to `false`.
|
|
||||||
|
|
|
||||||
*/
|
|
||||||
'controllers' => [
|
|
||||||
'transactions' => true,
|
|
||||||
'connection' => null,
|
|
||||||
],
|
|
||||||
|
|
||||||
/*
|
|
||||||
|--------------------------------------------------------------------------
|
|
||||||
| Jobs
|
|
||||||
|--------------------------------------------------------------------------
|
|
||||||
|
|
|
||||||
| Defines settings for the asynchronous processing feature. We recommend
|
|
||||||
| referring to the documentation on asynchronous processing if you are
|
|
||||||
| using this feature.
|
|
||||||
|
|
|
||||||
| Note that if you use a different model class, it must implement the
|
|
||||||
| asynchronous process interface.
|
|
||||||
|
|
|
||||||
*/
|
|
||||||
'jobs' => [
|
|
||||||
'resource' => 'queue-jobs',
|
|
||||||
'model' => \CloudCreativity\LaravelJsonApi\Queue\ClientJob::class,
|
|
||||||
],
|
|
||||||
|
|
||||||
/*
|
|
||||||
|--------------------------------------------------------------------------
|
|
||||||
| Encoding Media Types
|
|
||||||
|--------------------------------------------------------------------------
|
|
||||||
|
|
|
||||||
| This defines the JSON API encoding used for particular media
|
|
||||||
| types supported by your API. This array can contain either
|
|
||||||
| media types as values, or can be keyed by a media type with the value
|
|
||||||
| being the options that are passed to the `json_encode` method.
|
|
||||||
|
|
|
||||||
| These values are also used for Content Negotiation. If a client requests
|
|
||||||
| via the HTTP Accept header a media type that is not listed here,
|
|
||||||
| a 406 Not Acceptable response will be sent.
|
|
||||||
|
|
|
||||||
| If you want to support media types that do not return responses with JSON
|
|
||||||
| API encoded data, you can do this at runtime. Refer to the
|
|
||||||
| Content Negotiation chapter in the docs for details.
|
|
||||||
|
|
|
||||||
*/
|
|
||||||
'encoding' => [
|
|
||||||
'application/vnd.api+json',
|
|
||||||
],
|
|
||||||
|
|
||||||
/*
|
|
||||||
|--------------------------------------------------------------------------
|
|
||||||
| Decoding Media Types
|
|
||||||
|--------------------------------------------------------------------------
|
|
||||||
|
|
|
||||||
| This defines the media types that your API can receive from clients.
|
|
||||||
| This array is keyed by expected media types, with the value being the
|
|
||||||
| service binding that decodes the media type.
|
|
||||||
|
|
|
||||||
| These values are also used for Content Negotiation. If a client sends
|
|
||||||
| a content type not listed here, it will receive a
|
|
||||||
| 415 Unsupported Media Type response.
|
|
||||||
|
|
|
||||||
| Decoders can also be calculated at runtime, and/or you can add support
|
|
||||||
| for media types for specific resources or requests. Refer to the
|
|
||||||
| Content Negotiation chapter in the docs for details.
|
|
||||||
|
|
|
||||||
*/
|
|
||||||
'decoding' => [
|
|
||||||
'application/vnd.api+json',
|
|
||||||
],
|
|
||||||
|
|
||||||
/*
|
|
||||||
|--------------------------------------------------------------------------
|
|
||||||
| Providers
|
|
||||||
|--------------------------------------------------------------------------
|
|
||||||
|
|
|
||||||
| Providers allow vendor packages to include resources in your API. E.g.
|
|
||||||
| a Shopping Cart vendor package might define the `orders` and `payments`
|
|
||||||
| JSON API resources.
|
|
||||||
|
|
|
||||||
| A package author will define a provider class in their package that you
|
|
||||||
| can add here. E.g. for our shopping cart example, the provider could be
|
|
||||||
| `Vendor\ShoppingCart\JsonApi\ResourceProvider`.
|
|
||||||
|
|
|
||||||
*/
|
|
||||||
'providers' => [],
|
|
||||||
|
|
||||||
];
|
|
|
@ -18,18 +18,3 @@ use Illuminate\Support\Facades\Route;
|
||||||
Route::middleware('auth:api')->get('/user', function (Request $request) {
|
Route::middleware('auth:api')->get('/user', function (Request $request) {
|
||||||
return $request->user();
|
return $request->user();
|
||||||
});
|
});
|
||||||
|
|
||||||
JsonApi::register('default')->routes(function ($api) {
|
|
||||||
$api->resource('food-amounts')->relationships(function ($relations) {
|
|
||||||
$relations->hasOne('food');
|
|
||||||
$relations->hasOne('recipe');
|
|
||||||
});
|
|
||||||
$api->resource('foods');
|
|
||||||
$api->resource('recipes')->relationships(function ($relations) {
|
|
||||||
$relations->hasMany('food-amounts');
|
|
||||||
$relations->hasOne('steps');
|
|
||||||
});
|
|
||||||
$api->resource('recipe-steps')->relationships(function ($relations) {
|
|
||||||
$relations->hasOne('recipe');
|
|
||||||
});
|
|
||||||
});
|
|
||||||
|
|
Loading…
Reference in New Issue