forked from zalazdi/laravel-imap
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
33 lines (33 loc) · 705 Bytes
/
composer.json
File metadata and controls
33 lines (33 loc) · 705 Bytes
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
{
"name": "zalazdi/laravel-imap",
"description": "Laravel 5 IMAP client.",
"keywords": [
"laravel",
"imap",
"mail"
],
"homepage": "https://github.com/Zalazdi/LaravelImap",
"license": "MIT",
"authors": [
{
"name": "Krzysztof Graman",
"email": "zalazdi@gmail.com"
}
],
"require": {
"illuminate/support": "~5.1",
"php" : ">=5.3.0"
},
"autoload": {
"psr-4": {
"Zalazdi\\LaravelImap\\": "src"
}
},
"extra": {
"branch-alias": {
"dev-master": "2.0.x-dev"
}
},
"minimum-stability": "dev",
"prefer-stable": true
}