-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
executable file
·73 lines (72 loc) · 1.54 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
72
73
{
"name": "netherphp/atlantis",
"description": "Web Framework Stuff",
"keywords": [ ],
"license": "BSD-2-Clause",
"authors":[
{
"name": "Bob Majdak Jr",
"email": "[email protected]",
"homepage": "http://pegasusgate.net/+bob",
"role": "developer"
}
],
"config": {
"preferred-install": {
"netherphp/*": "source",
"*": "dist"
},
"allow-plugins": {
"netherphp/composer-plugin": true,
"dealerdirect/phpcodesniffer-composer-installer": true
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"php": ">=8.1",
"netherphp/avenue": "dev-redux",
"netherphp/common": "dev-master",
"netherphp/ki": "dev-redux",
"netherphp/surface": "dev-redux",
"netherphp/console": "dev-redux",
"netherphp/user": "dev-master",
"netherphp/sensei": "dev-redux",
"netherphp/email": "dev-master",
"netherphp/storage": "dev-master",
"netherphp/browser": "dev-master",
"google/recaptcha": "^1.2.4",
"gravitypdf/querypath": "^3.2",
"bacon/bacon-qr-code": "^2.0"
},
"require-dev": {
"netherphp/standards": "^0.2.8",
"dealerdirect/phpcodesniffer-composer-installer": "^0.7.2",
"phpunit/phpunit": "^9.6"
},
"bin": [
"bin/atlantis",
"bin/backup.atl",
"bin/codeserver.atl",
"bin/cron.atl",
"bin/date.atl",
"bin/dev.atl",
"bin/gfx.atl",
"bin/nether.atl",
"bin/project.atl",
"bin/ssl.atl",
"bin/traffic.atl",
"bin/user.atl",
"bin/web.atl",
"bin/atlantis-ssl",
"bin/atlantis-cron"
],
"autoload": {
"psr-0": {
"Nether\\": "src/"
},
"psr-4": {
"Routes\\": "routes/"
}
}
}