/var/www/vhosts/ihelp.ro/httpdocs/vendor/cakedc/users
NameSizeModeActions
config/-0755rm
Docs/-0755rm
resources/-0755rm
src/-0755rm
templates/-0755rm
tests/-0755rm
webroot/-0755rm
.gitignore530644editdlrm
.semver470644editdlrm
CHANGELOG.md53090644editdlrm
composer.json37380644editdlrm
CONTRIBUTING.md3210644editdlrm
LICENSE.txt11970644editdlrm
phpstan-baseline.neon196580644editdlrm
phpstan.neon1430644editdlrm
psalm-baseline.xml108080644editdlrm
psalm.xml6900644editdlrm
README.md38500644editdlrm
rector.yml1550644editdlrm
Edit: /var/www/vhosts/ihelp.ro/httpdocs/vendor/cakedc/users/composer.json (3738B)
{ "name": "cakedc/users", "description": "Users Plugin for CakePHP", "type": "cakephp-plugin", "keywords": [ "cakephp", "oauth2", "auth", "authentication", "cakedc" ], "homepage": "https://github.com/CakeDC/users", "license": "MIT", "authors": [ { "name": "CakeDC", "homepage": "http://www.cakedc.com", "role": "Author" }, { "name": "Others", "homepage": "https://github.com/CakeDC/users/graphs/contributors" } ], "support": { "issues": "https://github.com/CakeDC/users/issues", "source": "https://github.com/CakeDC/users" }, "minimum-stability": "dev", "require": { "php": ">=7.2.0", "cakephp/cakephp": "^4.0.0", "cakedc/auth": "^6.0.0", "cakephp/authorization": "^2.0.0", "cakephp/authentication": "^2.0.0" }, "require-dev": { "phpunit/phpunit": "^8.0", "league/oauth2-facebook": "@stable", "league/oauth2-instagram": "@stable", "league/oauth2-google": "@stable", "league/oauth2-linkedin": "@stable", "luchianenco/oauth2-amazon": "^1.1", "google/recaptcha": "@stable", "robthree/twofactorauth": "^1.6", "yubico/u2flib-server": "^1.0", "php-coveralls/php-coveralls": "^2.1", "league/oauth1-client": "^1.7", "cakephp/cakephp-codesniffer": "dev-next" }, "suggest": { "league/oauth1-client": "Provides Social Authentication with Twitter", "league/oauth2-facebook": "Provides Social Authentication with Facebook", "league/oauth2-instagram": "Provides Social Authentication with Instagram", "league/oauth2-google": "Provides Social Authentication with Google+", "luchianenco/oauth2-amazon": "Provides Social Authentication with Amazon", "league/oauth2-linkedin": "Provides Social Authentication with LinkedIn", "google/recaptcha": "Provides reCAPTCHA validation for registration form", "robthree/twofactorauth": "Provides Google Authenticator functionality", "cakephp/authorization": "Provide authorization for users" }, "autoload": { "psr-4": { "CakeDC\\Users\\": "src" } }, "autoload-dev": { "psr-4": { "CakeDC\\Users\\Test\\": "tests", "CakeDC\\Users\\Test\\Fixture\\": "tests" } }, "scripts": { "analyse": [ "@stan", "@psalm" ], "check": [ "@cs-check", "@test", "@analyse" ], "cs-check": "phpcs -n -p --standard=vendor/cakephp/cakephp-codesniffer/CakePHP ./src ./tests", "cs-fix": "phpcbf --standard=vendor/cakephp/cakephp-codesniffer/CakePHP ./src ./tests", "test": "phpunit --stderr", "stan": "phpstan analyse src/", "psalm": "php vendor/psalm/phar/psalm.phar --show-info=false src/ ", "stan-setup": "cp composer.json composer.backup && composer require --dev phpstan/phpstan-shim:^0.11.18 psalm/phar:^3.5 && mv composer.backup composer.json", "stan-rebuild-baseline": "phpstan analyse --configuration phpstan.neon --error-format baselineNeon src/ > phpstan-baseline.neon", "psalm-rebuild-baseline": "php vendor/psalm/phar/psalm.phar --show-info=false --set-baseline=psalm-baseline.xml src/", "rector": "rector process src/", "rector-setup": "cp composer.json composer.backup && composer require --dev rector/rector:^0.4.11 && mv composer.backup composer.json", "coverage-test": "phpunit --stderr --coverage-clover=clover.xml" } }