-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
43 lines (43 loc) · 1.02 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
{
"name": "wedeto/application",
"license": "MIT",
"description": "Wedeto Platform - Application, dispatcher etc",
"homepage": "https://wedeto.net/",
"type": "project",
"require": {
"wedeto/auth": "~1.0.0",
"wedeto/db": "~1.0",
"wedeto/fileformats": "~1.0",
"wedeto/html": "~1.0",
"wedeto/http": "~1.0",
"wedeto/i18n": "~1.0",
"wedeto/io": "~1.0",
"wedeto/log": "~1.0",
"wedeto/mail": "~1.0",
"wedeto/resolve": "~1.0",
"wedeto/util": "~1.0",
"php": ">=7.0.0"
},
"require-dev": {
"mikey179/vfsstream": "~1",
"phpunit/phpunit": "~6"
},
"autoload": {
"psr-4": {
"Wedeto\\Application\\": "src/"
}
},
"authors": [
{
"name": "Egbert van der Wal",
"email": "wedeto@pointpro.nl"
}
],
"archive": {
"exclude": ["/tests","/phpunit.xml"]
},
"bin": [
"bin/wedeto.php",
"bin/setup.php"
]
}