forked from nenes25/eicaptcha
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
44 lines (41 loc) · 934 Bytes
/
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
37
38
39
40
41
42
43
44
{
"name": "nenes25/eicaptcha",
"description": "PrestaShop Captcha Module",
"homepage": "https://github.com/nenes25/eicaptcha",
"license": "AFL-3.0",
"authors": [
{
"name": "Hhennes",
"email": "[email protected]"
},
{
"name": "drzraf",
"email": "[email protected]"
}
],
"require": {
"php": ">=5.6",
"google/recaptcha": "~1.1"
},
"autoload": {
"psr-4": {
"Eicaptcha\\Module\\": "src/"
}
},
"config": {
"preferred-install": "dist",
"prepend-autoloader": false
},
"type": "prestashop-module",
"require-dev": {
"prestashop/php-dev-tools": "^4.1"
},
"scripts": {
"phpstan" : [
"_PS_ROOT_DIR_=./../ php ~/.config/composer/vendor/bin/phpstan analyze -c ./tests/phpstan/phpstan.neon ./ --debug"
],
"cs-fixer": [
"php7.2 vendor/bin/php-cs-fixer fix --config tests/php/.php-cs-fixer.dist.php"
]
}
}