neblion / base-app
Neblion base application from symfony/framework-standard-edition
Requires
- doctrine/doctrine-fixtures-bundle: dev-master
- friendsofsymfony/user-bundle: *
- jquery/jquery: 1.9.1
- stof/doctrine-extensions-bundle: dev-master
- symfony/framework-standard-edition: 2.2.1
- twitter/bootstrap: dev-master-zip
This package is not auto-updated.
Last update: 2024-11-09 15:05:40 UTC
README
Neblion/BaseApp is a Symfony2 base application on top on symfony/framework-standard-edition. Working in progress, no stable release yet....
Neblion/BaseApp contain:
- stof/doctrine-extensions-bundle
- doctrine/doctrine-fixtures-bundle
- friendsofsymfony/user-bundle
- JQuery 1.9.1
- twitter/bootstrap
Installation
Requirements
You have to install and configure a Web server (such as Apache) with a recent version of PHP5 (5.3.8 or newer is recommended) and a database server. You also have to install composer (dependency management library for PHP), you should install it globally on your system.
As Neblion/BaseApp is a symfony app, you can find more informations on Symfony2 requirements at requirements reference. For information on configuring your specific web server document root, see the following documentation: Apache.
Step by step installation
-
Install via composer and packagist
composer create-project neblion/base-app <your-installation-path>
-
Create you vhost and configure DocumentRoot to -->
<your-path>/web
and check your config: http://<your-host>
/config.php -
Set permission on file system see Symfony2 install.
-
Create your DB and a user DB (if you use MySQL):
mysql -uroot -p <enter_mysql_root_pass> create database <DB_NAME>; grant all privileges on .* to ''@'localhost' identified by 'YOUR-PASSWORD' with grant option; flush privileges;
-
Set your parameters.yml
-
Run commands
cd php app/console doctrine:schema:update --force php app/console assets:install php app/console assetic:dump
-
All done, test it!
Documentation
Work in progress...
Support and contact
Tests
phpunit -c app
Continuous Integration On Travis-ci Platform...
License
Neblion/BaseApp is a free software licensed under the GNU Affero General Public License V3.