-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcomposer.json
71 lines (71 loc) · 1.95 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "phpdevsr/recaptcha-codeigniter4",
"description": "Free to Use Library reCAPTCHA v2 for Codeigniter 4",
"license": "MIT",
"type": "library",
"keywords": [
"codeigniter",
"codeigniter4",
"recaptcha",
"google-recaptcha"
],
"authors": [
{
"name": "Denny Septian Panggabean",
"email": "xamidimura@gmail.com",
"role": "Developer"
}
],
"homepage": "https://github.com/PHPDevsr/reCaptcha-Codeigniter4",
"require": {
"php": "^7.4 || ^8.0"
},
"require-dev": {
"codeigniter4/framework": "^4.3",
"codeigniter/coding-standard": "^1.7",
"nexusphp/tachycardia": "^1.4",
"php-coveralls/php-coveralls": "^2.5",
"phpstan/phpstan": "^1.10",
"phpunit/phpcov": "^8.2",
"phpunit/phpunit": "^9.6",
"rector/rector": "1.1.0"
},
"minimum-stability": "dev",
"prefer-stable": true,
"autoload": {
"psr-4": {
"PHPDevsr\\Recaptcha\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests"
}
},
"config": {
"allow-plugins": {
"phpstan/extension-installer": true,
"composer/package-versions-deprecated": true
}
},
"scripts": {
"post-update-cmd": [
"bash admin/setup.sh"
],
"reci": [
"Composer\\Config::disableProcessTimeout",
"@cs",
"@analyze",
"@test"
],
"analyze": [
"@phpstan",
"@rector"
],
"cs-fix": "vendor/bin/php-cs-fixer fix --ansi --verbose --diff --using-cache=no",
"cs": "vendor/bin/php-cs-fixer fix --ansi --verbose --dry-run --diff --using-cache=no",
"rector": "vendor/bin/rector process --dry-run",
"phpstan": "bash -c \"XDEBUG_MODE=off phpstan analyse\"",
"test": "phpunit"
}
}