diablomedia / phly-restfully
Laminas Module providing structure for RESTful resources
Requires
- php: ^7.4 || ~8.0.0 || ~8.1.0
- container-interop/container-interop: ^1.2
- laminas/laminas-eventmanager: ^3.0
- laminas/laminas-http: ^2.14
- laminas/laminas-hydrator: ^3.0.0 || ^4.0.0
- laminas/laminas-json: ^2.5.0 || ^3.0.0
- laminas/laminas-loader: ^2.5.0
- laminas/laminas-mvc: ^3.0.0
- laminas/laminas-paginator: ^2.5.0
- laminas/laminas-router: ^3.5
- laminas/laminas-servicemanager: ^3.4
- laminas/laminas-stdlib: ^3.2.1
- laminas/laminas-uri: ^2.5.0
- laminas/laminas-view: ^2.11.4
Requires (Dev)
- friendsofphp/php-cs-fixer: 3.8.0
- laminas/laminas-cli: ^1.4.0
- laminas/laminas-db: ^2.11
- laminas/laminas-navigation: ^2.5
- maglnet/composer-require-checker: ^2.0 || ^3.0
- phpro/grumphp-shim: ^0.22.0 || ^1.1
- phpstan/phpstan: 1.5.7
- phpunit/phpunit: ^9.5.10
- vimeo/psalm: 4.22.0
Suggests
- zfr/zfr-cors: zfr/zfr-cors provides CORS support
- dev-master
- 6.0.0
- 5.0.0
- 4.0.0
- 3.0.1
- 3.0.0
- 2.2.0
- 2.1.2
- 2.1.1
- 2.1.0
- 2.0.1
- 2.0.0
- 2.0.0beta4
- 2.0.0beta3
- 2.0.0beta2
- 2.0.0beta1
- 1.0.0
- dev-dependabot/composer/vimeo/psalm-5.8.0
- dev-dependabot/composer/phpstan/phpstan-1.10.6
- dev-dependabot/github_actions/actions/cache-3.3.0
- dev-dependabot/composer/friendsofphp/php-cs-fixer-3.14.4
- dev-dependabot/github_actions/shivammathur/setup-php-2.24.0
- dev-dependabot/github_actions/actions/checkout-3.3.0
This package is auto-updated.
Last update: 2024-10-11 01:31:49 UTC
README
ABANDONED
As of the 2.3.0 release, I have marked this module as abandoned.
The module very quickly proved that the approach was worthwhile and useful, and became the seed for Apigility. That project has far surpassed its origins in this module, and added a ton of functionality this module never managed to create, such as content negotiation, file upload handling, entity and collection hydration, and more.
As such, I recommend using Apigility in favor of PhlyRestfully for new projects, and that existing projects migrate to Apigility when possible.
This module provides structure and code for quickly implementing RESTful APIs that use JSON as a transport.
It allows you to create RESTful JSON APIs that use the following standards:
- HAL, used for creating hypermedia links
- Problem API, used for reporting API problems
Documentation is available at rtfd.org.
Upgrading
If you were using version 1.0.0 or earlier (the version presented at PHP Benelux 2013), you will need to make some changes to your application to get it to work.
- First, the terminology has changed, as have some class names, to reference
"resources" instead of "items"; this is more in line with RESTful terminology.
- As such, if you had any code using
PhlyRestfully\HalItem
, it should now referencePhlyRestfully\HalResource
. Similarly, in that class, you will access the actual resource object now from theresource
property instead of theitem
property. (This should only affect those post-1.0.0). - If you want to create link for an individual resource, use the
forResource
method ofHalLinks
, and not theforItem
method. InvalidItemException
was renamed toInvalidResourceException
.
- As such, if you had any code using
- A number of items were moved from the
RestfulJsonModel
to theRestfulJsonRenderer
.- Hydrators
- The flag for displaying exception backtraces; in fact, you can use
the
view_manager.display_exceptions
configuration setting to set this behavior.
- All results from the
ResourceController
are now pushed to apayload
variable in the view model.- Additionally,
ApiProblem
,HalResource
, andHalCollection
are first-class objects, and are used as thepayload
values.
- Additionally,
- The
Links
plugin was renamed toHalLinks
, and is now also available as a view helper.
LICENSE
This module is licensed using the BSD 2-Clause License:
Copyright (c) 2013, Matthew Weier O'Phinney
All rights reserved.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are met:
- Redistributions of source code must retain the above copyright notice, this
list of conditions and the following disclaimer.
- Redistributions in binary form must reproduce the above copyright notice,
this list of conditions and the following disclaimer in the documentation
and/or other materials provided with the distribution.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.