-
-
Notifications
You must be signed in to change notification settings - Fork 12
/
composer.json
64 lines (64 loc) · 1.8 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
60
61
62
63
64
{
"name": "jpmurray/laravel-countdown",
"type": "library",
"description": "Provide an easy class easy way to get the time difference between two dates, with an extra bonus trait for eloquent",
"keywords": [
"jpmurray",
"countdown",
"time",
"dates",
"elapsed",
"until"
],
"homepage": "https://github.com/jpmurray/laravel-countdown",
"license": "MIT",
"authors": [
{
"name": "Jean-Philippe Murray",
"email": "himself@jpmurray.net",
"homepage": "https://github.com/jpmurray/",
"role": "Developer"
}
],
"require": {
"php": "^7.0",
"ext-bcmath": "*",
"nesbot/carbon": "^2.0",
"illuminate/support": "6.* || 7.* || 8.*"
},
"require-dev": {
"orchestra/testbench": "~3.0",
"phpunit/phpunit": "~4.0||~5.0",
"squizlabs/php_codesniffer": "^2.3",
"nesbot/carbon": "^2.0",
"mockery/mockery": "dev-master@dev"
},
"autoload": {
"psr-4": {
"jpmurray\\LaravelCountdown\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"minimum-stability": "dev",
"extra": {
"laravel": {
"providers": [
"jpmurray\\LaravelCountdown\\CountdownServiceProvider"
],
"aliases": {
"Countdown": "jpmurray\\LaravelCountdown\\Facades\\CountdownFacade"
}
}
},
"scripts": {
"test": "phpunit",
"coverage": "phpunit --coverage-text --coverage-clover=coverage.clover",
"check-style": "phpcs -p --standard=PSR2 --runtime-set ignore_errors_on_exit 1 --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 test && composer run check-style && composer run fix-style && composer run coverage"
}
}