-
-
Notifications
You must be signed in to change notification settings - Fork 23
/
composer.json
36 lines (36 loc) · 1.01 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
33
34
35
36
{
"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": "^5.0",
"socialconnect/auth": "^3.3"
},
"require-dev": {
"phpunit/phpunit": "^10.1",
"cakephp/cakephp-codesniffer": "^5.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": {
"cs-check": "phpcs --colors -p ./src ./tests",
"cs-fix": "phpcbf --colors -p ./src ./tests",
"test": "phpunit"
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}