sarsport / sarsport-application-bundle
Provide creation applications for competitions by rogaining
Installs: 31
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 2
Forks: 0
Open Issues: 0
Type:symfony-bundle
Requires
- php: >=5.3.3
- doctrine/orm: >=2.2,<2.4-dev
- fightmaster/dao: >=1.0
- phpoffice/phpexcel: dev-develop
- sarsport/sarsport-user-bundle: dev-master
- symfony/form: >=2.1,<2.2-dev
- symfony/framework-bundle: >=2.1,<2.2-dev
- symfony/swiftmailer-bundle: >=2.1,<2.2-dev
- symfony/twig-bundle: >=2.1,<2.2-dev
This package is not auto-updated.
Last update: 2024-10-26 13:21:12 UTC
README
Introduction
Installation
Using Composer (recommended)
To install SarSportApplicationBundle with Composer just add the following to your composer.json file:
// composer.json { // ... require: { // ... "sarsport/sarsport-application-bundle": "1.0.0" } }
Then, you can install the new dependencies by running Composer’s update command from the directory where your composer.json file is located:
$ php composer.phar update
Composer will automatically download all required files, and install them for you. All that is left to do is to update your AppKernel.php file, and register the new bundle:
<?php // in AppKernel::registerBundles() $bundles = array( // ... new SarSport\Bundle\SarSportApplicationBundle\SarSportApplicationBundle(), // ... );
Configuration
SarSportApplicationBundle requires no initial configuration to get you started.