aubert-alexis / symfony4-starter
Installs: 18
Dependents: 0
Suggesters: 0
Security: 0
Stars: 5
Watchers: 1
Forks: 2
Open Issues: 20
Language:CSS
Type:project
Requires
- php: ^7.1.3
- ext-ctype: *
- ext-iconv: *
- sensio/framework-extra-bundle: ^5.1
- symfony/asset: 4.2.*
- symfony/console: 4.2.*
- symfony/debug-bundle: 4.2.*
- symfony/dotenv: 4.2.*
- symfony/expression-language: 4.2.*
- symfony/flex: ^1.1
- symfony/form: 4.2.*
- symfony/framework-bundle: 4.2.*
- symfony/monolog-bundle: ^3.1
- symfony/orm-pack: *
- symfony/process: 4.2.*
- symfony/security-bundle: 4.2.*
- symfony/serializer-pack: *
- symfony/swiftmailer-bundle: ^3.2
- symfony/translation: 4.2.*
- symfony/twig-bundle: 4.2.*
- symfony/validator: 4.2.*
- symfony/web-link: 4.2.*
- symfony/webpack-encore-bundle: ^1.7
- symfony/yaml: 4.2.*
Requires (Dev)
Conflicts
- dev-master
- 1.1
- 1.0
- dev-dependabot/npm_and_yarn/json5-1.0.2
- dev-dependabot/npm_and_yarn/express-4.18.2
- dev-dependabot/npm_and_yarn/decode-uri-component-0.2.2
- dev-dependabot/npm_and_yarn/terser-4.8.1
- dev-dependabot/npm_and_yarn/eventsource-1.1.1
- dev-dependabot/npm_and_yarn/async-2.6.4
- dev-dependabot/npm_and_yarn/url-parse-1.5.10
- dev-dependabot/npm_and_yarn/follow-redirects-1.14.8
- dev-dependabot/npm_and_yarn/ajv-6.12.6
- dev-dependabot/npm_and_yarn/path-parse-1.0.7
- dev-dependabot/npm_and_yarn/ws-6.2.2
- dev-dependabot/npm_and_yarn/dns-packet-1.3.4
- dev-dependabot/npm_and_yarn/browserslist-4.16.6
- dev-dependabot/npm_and_yarn/ssri-6.0.2
- dev-dependabot/npm_and_yarn/elliptic-6.5.4
- dev-dependabot/npm_and_yarn/ini-1.3.8
- dev-dependabot/npm_and_yarn/http-proxy-1.18.1
- dev-dependabot/npm_and_yarn/websocket-extensions-0.1.4
- dev-dependabot/npm_and_yarn/acorn-6.4.1
- dev-dependabot/composer/symfony/var-exporter-4.4.4
This package is auto-updated.
Last update: 2024-11-05 08:28:03 UTC
README
Guide
This is a simple starter who can be used for any project with back-office.
SB admin 2
template is implemented for the design.
features
:
Security
- Login -> check your roles and redirect ( ROLE_ADMIN -> BO | ROLE_USER -> FO) - Check tips section for credentials
- Registration form -> simple user registration
- Forgot password -> in localhost email is not sended, you have to check the debug bar on the mail icon you will find the url to reset your password
Back-office
- Dashboard -> actually, he is so simple only the count of users registred
- User -> table with CRUD and datatable
- Profil (at right on top) -> edit your personnal informations
- Parameter (at right on top) -> change your password
Tips
Login :
- USER - user@user.fr / user
- ADMIN - admin@admin.fr / admin
Title :
Sf4-Starter
on title of pages -> config/packages/twig.yaml
globals -> const_website_title
Installation
1 - Composer
Download dependencies
needed for project : composer install
2 - Database
IMPORTANT
: change the .env with your information.
Create the database :
php bin/console doctrine:database:create
Update the database :
php bin/console doctrine:migration:migrate
3 - Fixtures
Load random fake data.
php bin/console doctrine:fixtures:load
4 - Server
Launch server.
php bin/console server:run