https://github.com/webinarium/symfony-lazysec
Symfony library with a bunch of security related features.
https://github.com/webinarium/symfony-lazysec
php security symfony
Last synced: about 1 month ago
JSON representation
Symfony library with a bunch of security related features.
- Host: GitHub
- URL: https://github.com/webinarium/symfony-lazysec
- Owner: webinarium
- License: mit
- Created: 2017-04-14T10:44:55.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2021-05-31T03:04:06.000Z (about 4 years ago)
- Last Synced: 2025-05-26T04:41:49.633Z (about 2 months ago)
- Topics: php, security, symfony
- Language: PHP
- Homepage:
- Size: 89.8 KB
- Stars: 9
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
[](https://secure.php.net/migration71)
[](https://packagist.org/packages/webinarium/symfony-lazysec)
[](https://travis-ci.org/webinarium/symfony-lazysec)
[](https://scrutinizer-ci.com/g/webinarium/symfony-lazysec/?branch=master)
[](https://scrutinizer-ci.com/g/webinarium/symfony-lazysec/?branch=master)# Lazy security for Symfony
The library provides few classes and features related to the Security component:
- [User entity trait](//github.com/webinarium/symfony-lazysec/wiki/User-entity)
- [User checker](//github.com/webinarium/symfony-lazysec/wiki/User-checker)
- [Translations](//github.com/webinarium/symfony-lazysec/wiki/Translations)All the features are decoupled from each other and can be used independently, so you are free to use only those you need.
## Installation
Open a command console, enter your project directory and execute the following command to download the latest stable version of the library:
```console
composer require webinarium/symfony-lazysec
```This command requires you to have Composer installed globally, as explained in the [installation chapter](https://getcomposer.org/doc/00-intro.md) of the Composer documentation.
## Development
```console
./vendor/bin/php-cs-fixer fix
./vendor/bin/phpunit --coverage-html=vendor/coverage
```