-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
42 lines (42 loc) · 1.12 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
{
"name": "larablocks/pigeon",
"type": "library",
"description": "A more flexible email message builder for Laravel 5 including chained methods, reusable message configurations, and message layout and template view management.",
"keywords": [
"mailer","laravel","laravel 5","mail","email","message","template","views","builder","pigeon"
],
"license": "MIT",
"authors": [
{
"name": "Eric Mitkowski",
"email": "eric@soaringtech.com",
"role": "Developer"
}
],
"require": {
"php": ">=5.6.4",
"illuminate/config": "~5.4",
"illuminate/mail": "~5.4",
"illuminate/log": "~5.4"
},
"require-dev": {
"fzaninotto/faker": "~1.5",
"mockery/mockery": "0.9.*",
"phpunit/phpunit": "~5.7"
},
"autoload": {
"psr-4": {
"Larablocks\\Pigeon\\": "src/Pigeon"
}
},
"autoload-dev": {
"psr-4": {
"Larablocks\\Pigeon\\PHPUnit\\": "tests"
}
},
"extra": {
"branch-alias": {
"dev-master": "5.4.x-dev"
}
}
}