-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
43 lines (42 loc) · 873 Bytes
/
composer.json
File metadata and controls
43 lines (42 loc) · 873 Bytes
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
{
"name": "netherphp/captcha",
"description": "Provides interfaces to common Captcha systems.",
"keywords": [ "php", "captcha" ],
"license": "BSD-2-Clause",
"minimum-stability": "dev",
"prefer-stable": true,
"authors":[
{
"name": "Bob Majdak Jr",
"email": "bob@pegasusgate.net",
"homepage": "http://pegasusgate.net",
"role": "developer"
}
],
"config": {
"preferred-install": {
"netherphp/*": "source",
"*": "dist"
},
"allow-plugins": {
"netherphp/composer-plugin": true,
"dealerdirect/phpcodesniffer-composer-installer": true
}
},
"require": {
"php": "^8.1",
"netherphp/atlantis": "dev-master"
},
"require-dev": {
"netherphp/standards": ">=0.2.8",
"phpunit/phpunit": "^9.5.28",
"dealerdirect/phpcodesniffer-composer-installer": "^0.7.2"
},
"bin": [
],
"autoload": {
"psr-0": {
"Nether\\":"src/"
}
}
}