A demo application to showcase the main features of EasyAdmin, the new and simple admin generator for Symfony applications.
- PHP 7.1.3 or higher;
- PDO-SQLite PHP extension enabled;
- and the usual Symfony application requirements.
git clone https://github.com/javiereguiluz/easy-admin-demo
cd easy-admin-demo/
composer install
php bin/console server:run
- Browse
http://127.0.0.1:8000/admin/
The project comes with an SQLite sample database, but you can also create your own database and load the fixtures data:
- Edit the
DATABASE_URL
env var in the.env
file to use your database credentials. php bin/console doctrine:database:create
php bin/console doctrine:schema:create
php bin/console doctrine:fixtures:load --append
Execute this command to run tests:
$ easy-admin-demo/
$ ./vendor/bin/simple-phpunit