php-rpc/cruds

Symfony CRUD bundle

Maintainers

Details

github.com/php-rpc/cruds

Source

Issues

Installs: 221

Dependents: 0

Suggesters: 0

Security: 0

Stars: 1

Watchers: 1

Forks: 0

Open Issues: 2

Type:symfony-bundle

1.0 2017-12-02 09:08 UTC

This package is not auto-updated.

Last update: 2024-04-22 04:01:17 UTC


README

License Build Status Code Coverage Scrutinizer Code Quality

Latest Stable Version Latest Unstable Version Total Downloads

Features

The main purpose of this library it to create easy configurable and extensible API for entities:

  • Read controller with flexible entity querying and filtering
  • Create and update controllers with easy entity lifecycle control
  • Basic access checks

Installation

  1. Require package from packagist:
composer require php-rpc/cruds:~1.0
  1. Include bundle into your application kernel

Doctrine bundle is mandatory to include too as it provides the common "@doctrine" service.

class AppKernel extends Kernel {
    public function registerBundles()
    {
        return [
            //...
            new Doctrine\Bundle\DoctrineBundle\DoctrineBundle,
            new ScayTrase\Api\Cruds\CrudsBundle(),
            //...
        ];
    }
}

That's all, you are ready to go!

Configuration

See Configuration reference

Usage

See usage manual

Hooking (Event system)

See usage manual

Dependencies

Currently the main dependency is doctrine/common library which provides the Criteria and the Selectable interface as powerful tool to configure fetch the entities. Second important dependency is doctrine/doctrine-bundle providing the doctrine registry. You can implement and override it though.

Integrations

See integration reference

Current limitations

Property mapper

Currently only application-wide API property mapper is supported. This happens because you can use the relations during the criteria configuration and the mapper used for the one entity should handle all of them.

This means that you cannot use both jms/serializer and symfony/serializer as api metadata provider at the same time, you have to choose and convert mappings.