-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathcomposer.json
More file actions
34 lines (34 loc) · 1.14 KB
/
composer.json
File metadata and controls
34 lines (34 loc) · 1.14 KB
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
{
"name": "flynsarmy/oc-sociallogin-plugin",
"type": "october-plugin",
"description": "Allows October CMS site visitors to register/sign in with their social media accounts",
"license": "MIT",
"authors": [
{
"name": "Flyn San",
"email": "flynsarmy@gmail.com"
}
],
"require": {
"hybridauth/hybridauth": "^3.7"
},
"require-dev": {
"squizlabs/php_codesniffer": "^3.5"
},
"scripts": {
"phpstan": "php -d memory_limit=-1 ./vendor/bin/phpstan analyse",
"phpcbf": "vendor/bin/phpcbf --standard=./.phpcs.xml ./",
"phpcs": "vendor/bin/phpcs -s --standard=./.phpcs.xml ./",
"phpcompat": "vendor/bin/phpcs --standard=PHPCompatibility --runtime-set testVersion 7.4 ./",
"phpunit": "vendor/bin/phpunit ./tests/unit/",
"coverage": "vendor/bin/phpunit tests/unit --coverage-html coverage --whitelist src/",
"lint": "vendor/bin/parallel-lint --exclude vendor .",
"test": [
"composer validate --strict",
"@phpcs"
]
},
"extra": {
"installer-name": "sociallogin"
}
}