-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
executable file
·94 lines (94 loc) · 2.7 KB
/
Copy pathcomposer.json
File metadata and controls
executable file
·94 lines (94 loc) · 2.7 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
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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"name": "shetabit/captcha",
"type": "library",
"description": "Laravel CAPTCHA Integration Package",
"keywords": [
"shetabit",
"captcha",
"CAPTCHA",
"laravel captcha",
"laravel captcha package",
"laravel CAPTCHA",
"laravel CAPTCHA package"
],
"homepage": "https://github.com/shetabit/captcha",
"license": "MIT",
"authors": [
{
"name": "Hashem Moghaddari",
"email": "hashemm364@gmail.com",
"homepage": "https://github.com/hamog",
"role": "Developer"
},
{
"name": "Mahdi Khanzadi",
"email": "khanzadimahdi@gmail.com",
"homepage": "https://github.com/shetabit",
"role": "Developer"
}
],
"require": {
"php": "^8.4",
"ext-gd": "*",
"illuminate/http": "^12.0|^13.0",
"illuminate/routing": "^12.0|^13.0",
"illuminate/support": "^12.0|^13.0",
"illuminate/view": "^12.0|^13.0"
},
"require-dev": {
"larastan/larastan": "^3.10",
"orchestra/testbench": "^10.0|^11.0",
"phpcsstandards/php_codesniffer": "^4.0",
"phpstan/phpstan": "^2.2",
"phpunit/phpunit": "^11.5|^12.0|^13.0",
"rector/rector": "^2.6"
},
"autoload": {
"psr-4": {
"Shetabit\\Captcha\\": "src"
},
"files": [
"src/helpers.php"
]
},
"autoload-dev": {
"psr-4": {
"Shetabit\\Captcha\\Tests\\": "tests"
}
},
"scripts": {
"test": "phpunit",
"test-coverage": "phpunit --coverage-text",
"check-style": "phpcs",
"fix-style": "phpcbf",
"analyse": "phpstan analyse --memory-limit=1G",
"rector": "rector process --dry-run",
"ci": [
"@check-style",
"@analyse",
"@test"
]
},
"extra": {
"laravel": {
"providers": [
"Shetabit\\Captcha\\Provider\\CaptchaServiceProvider"
],
"aliases": {
"Captcha": "Shetabit\\Captcha\\Facade\\Captcha"
}
}
},
"config": {
"sort-packages": true
},
"scripts-descriptions": {
"test": "Run the test suite.",
"test-coverage": "Run the test suite and report code coverage.",
"check-style": "Check the coding style of config, src and tests.",
"fix-style": "Fix the coding style of config, src and tests where possible.",
"analyse": "Run static analysis on src and tests.",
"rector": "Show the refactorings Rector would apply.",
"ci": "Run every check the CI pipeline runs."
}
}