-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
59 lines (59 loc) · 1.91 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
51
52
53
54
55
56
57
58
59
{
"name": "juniorb2ss/laravel-email-logger",
"description": "Possible to armazenate all emails send by application in Redis, Database, Elasticsearch or push to SNS.",
"license": "MIT",
"type": "package",
"keywords": [
"email",
"laravel",
"log",
"eloquent"
],
"authors": [
{
"name": "Carlos Eduardo",
"email": "[email protected]"
}
],
"require": {
"php": ">=5.5.0",
"illuminate/mail": "^5.0",
"illuminate/support": "5.x.x",
"squizlabs/php_codesniffer": "^3.2"
},
"require-dev": {
"mockery/mockery": "^0.9.5",
"laravel/framework": "^5.1",
"phpunit/phpunit": "~4.0|~5.0",
"orchestra/testbench": "~3.0"
},
"autoload": {
"psr-4": {
"juniorb2ss\\LaravelEmailLogger\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"juniorb2ss\\LaravelEmailLogger\\Tests\\": "tests"
}
},
"config": {
"preferred-install": "dist"
},
"scripts": {
"test": "phpunit",
"test-watch": "clear && phpunit-watcher watch",
"coverage": "phpunit --coverage-text --coverage-clover=coverage.clover",
"check-style": "phpcs -p --standard=PSR2 --runtime-set ignore_errors_on_exit 1 --ignore=*/src/Database/* --runtime-set ignore_warnings_on_exit 1 src tests",
"fix-style": "phpcbf -p --standard=PSR2 --runtime-set ignore_errors_on_exit 1 --runtime-set ignore_warnings_on_exit 1 src tests",
"build": "composer run check-style && composer run fix-style && composer run coverage"
},
"extra": {
"laravel":{
"providers": [
"juniorb2ss\\LaravelEmailLogger\\Providers\\LaravelEmailLoggerServiceProvider",
"juniorb2ss\\LaravelEmailLogger\\Providers\\LaravelEmailLoggerEventServiceProvider"
]
}
}
}