-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
50 lines (50 loc) · 1.29 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
{
"name": "avisota/recipient-fake",
"description": "Fake recipient for Avisota.",
"keywords": [
"avisota",
"fake"
],
"homepage": "http://avisota.org",
"license": "LGPL-3.0-or-later",
"authors": [
{
"name": "Sven Baumann",
"email": "baumann.sv@gmail.com",
"homepage": "http://avisota.org",
"role": "Developer"
}
],
"support": {
"email": "support@avisota.org",
"issues": "https://github.com/bit3/contao-avisota/issues",
"forum": "https://community.contao.org/de/forumdisplay.php?121-Avisota",
"wiki": "http://avisota.org",
"irc": "irc://irc.freenode.org/avisota",
"source": "https://github.com/avisota/fake-recipient"
},
"require": {
"php": "^5.6",
"avisota/core": "^1.0",
"fzaninotto/faker": "^1.0"
},
"require-dev": {
"phpcq/all-tasks": "^1.1"
},
"autoload": {
"psr-4": {
"Avisota\\Recipient\\Fake\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Avisota\\Test\\Recipient\\Fake\\": "tests/Test/"
}
},
"extra": {
"branch-alias": {
"dev-master": "1.2.x-dev",
"dev-develop": "1.3.x-dev"
}
}
}