Download the PHP package arkounay/quick-admin-generator-bundle without Composer

On this page you can find all versions of the php package arkounay/quick-admin-generator-bundle. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.

FAQ

After the download, you have to make one include require_once('vendor/autoload.php');. After that you have to import the classes with use statements.

Example:
If you use only one package a project is not needed. But if you use more then one package, without a project it is not possible to import the classes with use statements.

In general, it is recommended to use always a project to download your libraries. In an application normally there is more than one library needed.
Some PHP packages are not free to download and because of that hosted in private repositories. In this case some credentials are needed to access such packages. Please use the auth.json textarea to insert credentials, if a package is coming from a private repository. You can look here for more information.

  • Some hosting areas are not accessible by a terminal or SSH. Then it is not possible to use Composer.
  • To use Composer is sometimes complicated. Especially for beginners.
  • Composer needs much resources. Sometimes they are not available on a simple webspace.
  • If you are using private repositories you don't need to share your credentials. You can set up everything on our site and then you provide a simple download link to your team member.
  • Simplify your Composer build process. Use our own command line tool to download the vendor folder as binary. This makes your build process faster and you don't need to expose your credentials for private repositories.
Please rate this library. Is it a good library?

Informations about the package quick-admin-generator-bundle

QAG - Quick Admin Generator Bundle

GitHub release (latest SemVer) GitHub Workflow Status MIT License codecov

QAG is a bundle that allows quick and simple generation of administration backends for Symfony applications using Doctrine.

Quick Admin Generator Preview

Getting started

Install the dependency:

also, make sure the following line was added in config/bundles.php:

and that assets were installed: php bin/console assets:install --symlink.

Finally, add the following route configuration, for example in config/routes.yaml:

You will probably want to secure the /admin route prefix. To do so, you can add the following line in your security.yaml:

and that's it, the bundle is ready to be used.

Now, you can add a Controller that extends Arkounay\Bundle\QuickAdminGeneratorBundle\Controller\Crud to add your first crud.

For example, let's say you have a News entity.

!> Make sure your entity implements __toString()!

Create a controller, for instance src/Controller/Admin/NewsController.php, with the following code:

and now refresh /admin in your browser. You should see a new "News" item that appeared in the menu, and you should now be able to create, edit, and delete news.

If you use the symfony command to display routes php bin/console debug:router, you'll see that some routes have been generated for you:

Next steps

There are multiple ways to configure and override things in QAG Bundle, depending on the complexity of the project. You can use attributes for simple and quick tweaks regarding entity fields, override Twig templates to change the appearance, add listeners to create special rules that apply when parsing entities, and more.

See : 1) Fields configuration


All versions of quick-admin-generator-bundle with dependencies

PHP Build Version
Package Version
Requires php Version >=8.2.0
knplabs/knp-paginator-bundle Version >=5.3
doctrine/doctrine-bundle Version >=2.1
symfony/form Version >=6.3.0
symfony/framework-bundle Version >=6.3.0
symfony/console Version >=6.3.0
symfony/intl Version >=6.3.0
symfony/property-info Version >=6.3.0
symfony/yaml Version >=6.3.0
symfony/expression-language Version >=6.3
symfony/asset Version >=6.3
symfony/security-bundle Version >=6.3
symfony/validator Version >=6.3
arkounay/ux-collection Version ^4.0
symfony/twig-bundle Version >=6.3.0
twig/intl-extra Version >=3.3
twig/extra-bundle Version >=3.3
twig/twig Version ^2.12|^3.0
doctrine/doctrine-migrations-bundle Version ^3.1
doctrine/orm Version ^2.10
symfony/proxy-manager-bridge Version >=6.3.0
symfony/ux-turbo Version ^2.0
symfony/stimulus-bundle Version ^2.13
symfony/monolog-bundle Version >=3.1
symfony/flex Version ^2
Composer command for our command line client (download client) This client runs in each environment. You don't need a specific PHP version etc. The first 20 API calls are free. Standard composer command

The package arkounay/quick-admin-generator-bundle contains the following files

Loading the files please wait ....