mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-10-15 16:57:09 +00:00
57 lines
2.0 KiB
PHP
57 lines
2.0 KiB
PHP
<?php
|
|
|
|
|
|
/*
|
|
* jsonapi.php
|
|
* Copyright (c) 2025 james@firefly-iii.org.
|
|
*
|
|
* This file is part of Firefly III (https://github.com/firefly-iii).
|
|
*
|
|
* This program is free software: you can redistribute it and/or modify
|
|
* it under the terms of the GNU Affero General Public License as
|
|
* published by the Free Software Foundation, either version 3 of the
|
|
* License, or (at your option) any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU Affero General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU Affero General Public License
|
|
* along with this program. If not, see https://www.gnu.org/licenses/.
|
|
*/
|
|
|
|
declare(strict_types=1);
|
|
|
|
use FireflyIII\JsonApi\V2\Server;
|
|
|
|
return [
|
|
/*
|
|
|--------------------------------------------------------------------------
|
|
| Root Namespace
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
| The root JSON:API namespace, within your application's namespace.
|
|
| This is used when generating any class that does not sit *within*
|
|
| a server's namespace. For example, new servers and filters.
|
|
|
|
|
| By default this is set to `JsonApi` which means the root namespace
|
|
| will be `\App\JsonApi`, if your application's namespace is `App`.
|
|
*/
|
|
'namespace' => 'JsonApi',
|
|
|
|
/*
|
|
|--------------------------------------------------------------------------
|
|
| Servers
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
| A list of the JSON:API compliant APIs in your application, referred to
|
|
| as "servers". They must be listed below, with the array key being the
|
|
| unique name for each server, and the value being the fully-qualified
|
|
| class name of the server class.
|
|
*/
|
|
'servers' => [
|
|
'v2' => Server::class,
|
|
],
|
|
];
|