Skip to content

Commit e278541

Browse files
committed
Initial commit
1 parent 3143f38 commit e278541

20 files changed

+1151
-0
lines changed

composer.json

Lines changed: 41 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
{
2+
"name": "zbateson/mailbox-folder",
3+
"description": "Lists and displays email messages stored on a local folder",
4+
"keywords": ["email", "inbox", "folder", "mailbox"],
5+
"license": "BSD-3-Clause",
6+
"authors": [
7+
{
8+
"name": "Zaahid Bateson",
9+
"email": "zbateson@users.noreply.github.com"
10+
}
11+
],
12+
"require": {
13+
"aura/web-kernel": "~2.1.0",
14+
"monolog/monolog": "~1.0",
15+
"aura/view": "~2.1.0",
16+
"aura/html": "~2.4.0",
17+
"zbateson/mail-mime-parser": "~0.3.0"
18+
},
19+
"autoload": {
20+
"psr-4": {
21+
"ZBateson\\MailboxFolder\\": "src/",
22+
"Aura\\Web_Project\\_Config\\": "config/"
23+
}
24+
},
25+
"extra": {
26+
"aura": {
27+
"type": "project",
28+
"config": {
29+
"common": "Aura\\Web_Project\\_Config\\Common",
30+
"dev": "Aura\\Web_Project\\_Config\\Dev",
31+
"test": "Aura\\Web_Project\\_Config\\Test",
32+
"prod": "Aura\\Web_Project\\_Config\\Prod"
33+
}
34+
}
35+
},
36+
"autoload-dev": {
37+
"psr-4": {
38+
"Aura\\Web_Project\\": "tests/"
39+
}
40+
}
41+
}

0 commit comments

Comments
 (0)