lankerd / groundwork-bundle
Symfony GroundworkBundle
Installs: 108 264
Dependents: 0
Suggesters: 0
Security: 0
Stars: 2
Watchers: 2
Forks: 9
Open Issues: 12
Type:symfony-bundle
Requires
- php: ^7.2
- ext-json: *
- doctrine/doctrine-bundle: ^1.10
- doctrine/inflector: ^1.0
- doctrine/orm: ^2.6.2
- league/csv: ^9.2
- symfony/form: ^4.3
- symfony/serializer: ^4.3
- twig/twig: ^2.0
- dev-master
- v1.2.4
- v1.2.3
- v1.2.2
- v1.2.1
- v1.1.2
- v1.1.1
- v1.1.0
- 1.0.x-dev
- v1.0.5
- v1.0.4
- v1.0.3
- v1.0.1
- v1.0.0
- v0.212
- v0.211
- v0.210
- v0.209
- v0.208
- v0.207
- v0.206
- v0.205
- v0.204
- v0.203
- v0.202
- v0.201
- 0.200
- 0.199
- v0.198
- v0.197
- v0.196
- v0.195
- v0.194
- v0.193
- 0.192
- v0.191
- v0.190
- v0.189
- v0.188
- 0.187
- v0.186
- v0.185
- v0.184
- v0.183
- 0.182
- 0.181
- 0.17
- v0.16
- v0.15
- v0.1
- dev-singularity-login-fix
- dev-feature/Cleanly-Organize-Code
- dev-develop
- dev-feature/singularity-update
- dev-feature/CorePHP
- dev-pullrequests/ladanimesh/develop
- dev-hotfix/backward-compatible-package-update
- dev-feature/1.1
This package is auto-updated.
Last update: 2025-04-12 22:12:09 UTC
README
Make sure to add the code below:
Installation
Make sure Composer is installed globally, as explained in the installation chapter of the Composer documentation.
Applications that use Symfony Flex
Open a command console, enter your project directory and execute:
$ composer require lankerd/groundwork-bundle
Applications that don't use Symfony Flex
Step 1: Download the Bundle
Open a command console, enter your project directory and execute the following command to download the latest stable version of this bundle:
$ composer require lankerd/groundwork-bundle
Step 2: Enable the Bundle
Then, enable the bundle by adding it to the list of registered bundles
in the config/bundles.php
file of your project:
// config/bundles.php return [ Lankerd\GroundworkBundle\LankerdGroundworkBundle::class => ['all' => true], ];