-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
46 lines (46 loc) · 1 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
{
"name": "waldorfaugsburg/wifi",
"type": "project",
"description": "Web-application for manging RADIUS accounts and vouchers in UniFi networks.",
"license": "MIT",
"authors": [
{
"name": "Linus Groschke",
"email": "contact@elektronisch.dev",
"homepage": "https://elektronisch.dev"
}
],
"require": {
"php": "^8.1",
"codeigniter4/framework": "^4",
"art-of-wifi/unifi-api-client": "^2.0",
"ext-ldap": "*",
"directorytree/ldaprecord": "^3.0",
"ext-openssl": "*"
},
"require-dev": {
"fakerphp/faker": "^1.9",
"mikey179/vfsstream": "^1.6",
"phpunit/phpunit": "^11.3"
},
"suggest": {
"ext-fileinfo": "Improves mime type detection for files"
},
"autoload": {
"psr-4": {
"App\\": "app",
"Config\\": "app/Config"
},
"exclude-from-classmap": [
"**/Database/Migrations/**"
]
},
"autoload-dev": {
"psr-4": {
"Tests\\Support\\": "tests/_support"
}
},
"scripts": {
"test": "phpunit"
}
}