twin-elements / simple-sortable-bundle
Symfony 3 Sortable Bundle
Installs: 4
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 0
Type:symfony-bundle
Requires
- php: >=5.3.3
- stof/doctrine-extensions-bundle: ^1.2
- twig/twig: ^1.0||^2.0
This package is not auto-updated.
Last update: 2024-11-09 05:47:29 UTC
README
Symfony 3 Sortable bundle for CMS JELLINEK
-
Download this bundle to your project first. The preferred way to do it is to use Composer package manager:
$ composer require twin-elements/sortable-bundle
NOTE: If you haven't installed
Composer
yet, check the [installation guide][2].NOTE: If you're not using
Composer
, add theSortableBundle
to your autoloader manually. -
Add this bundle to your application's kernel:
// app/AppKernel.php public function registerBundles() { $bundles = array( // ... new TwinElements\SortableBundle\TwinElementsSortableBundle(), // ... ); }
-
Add to routing.yml:
# app/config/routing.yml twin_elements_sortable: resource: "@TwinElementsSortableBundle/Controller/" type: annotation prefix: /
Usage
...