demontpx / util-bundle
Various Symfony utils
Installs: 859
Dependents: 2
Suggesters: 0
Security: 0
Stars: 0
Watchers: 2
Forks: 0
Type:symfony-bundle
Requires
- php: >=7.4
- ext-intl: *
- doctrine/orm: ^2.7
- symfony/form: ^4.4|^5.0
- symfony/framework-bundle: ^4.4|^5.0
Requires (Dev)
- cocur/slugify: ^3.2
- phpunit/phpunit: ^9.5
- symfony/browser-kit: ^4.4|^5.0
- symfony/dom-crawler: ^4.4|^5.0
- symfony/yaml: ^4.4|^5.0
- twig/twig: ^2.4|^3.0
Conflicts
- phpunit/phpunit: <8.0
README
These are some utils I use often in my Symfony projects
Installation
Install the bundle in your project by running:
$ composer require demontpx/util-bundle
Enable the bundle in your kernel:
<?php // app/AppKernel.php public function registerBundles() { $bundles = [ // ... new Demontpx\UtilBundle\DemontpxUtilBundle(), ]; }