forked from ADmad/cakephp-social-auth
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
32 lines (32 loc) · 1.2 KB
/
composer.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
{
"name": "admad/cakephp-social-auth",
"description": "A CakePHP plugin which allows you to authenticate using social providers like Facebook/Google/Twitter etc.",
"type": "cakephp-plugin",
"require": {
"cakephp/cakephp": "^4.0",
"socialconnect/auth": "^3.1"
},
"require-dev": {
"phpunit/phpunit": "^8.5.0 || ^9.5.0",
"cakephp/cakephp-codesniffer": "^4.0"
},
"autoload": {
"psr-4": {
"ADmad\\SocialAuth\\": "src/",
"ADmad\\SocialAuth\\Test\\Fixture\\": "tests/Fixture/"
}
},
"autoload-dev": {
"psr-4": {
"ADmad\\SocialAuth\\Test\\": "tests/",
"TestApp\\": "tests/test_app/src/"
}
},
"license": "MIT",
"scripts": {
"stan-setup": "cp composer.json composer.backup && composer require --dev phpstan/phpstan:^0.12 && mv composer.backup composer.json",
"stan": "vendor/bin/phpstan analyse src/",
"cs-check": "vendor/bin/phpcs -n -p --extensions=php --standard=vendor/cakephp/cakephp-codesniffer/CakePHP src/ tests/",
"cs-fix": "vendor/bin/phpcbf -p --extensions=php --standard=vendor/cakephp/cakephp-codesniffer/CakePHP src/ tests/"
}
}