-
Notifications
You must be signed in to change notification settings - Fork 70
/
composer.json
43 lines (43 loc) · 1.13 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
{
"name": "indatus/dispatcher",
"description": "Schedule your artisan commands within your application's source code",
"keywords": ["laravel", "artisan", "dispatcher", "schedule", "cron"],
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Ben Kuhl",
"email": "[email protected]",
"role": "Software Engineer"
}
],
"require": {
"php": ">=5.4",
"wp-cli/php-cli-tools": "~0.10.2",
"mtdowling/cron-expression": "~1.0.3",
"laravel/framework": "~5.0",
"nesbot/carbon": "~1.0"
},
"require-dev": {
"orchestra/testbench": "3.0.*",
"phpunit/phpunit": "~4.0",
"mockery/mockery": "~0.9",
"fabpot/php-cs-fixer": "~1.0",
"squizlabs/php_codesniffer": "~1.5"
},
"autoload": {
"classmap": [
"tests/TestCase.php"
],
"psr-0": {
"Indatus\\Dispatcher\\": "src/"
}
},
"extra": {
"branch-alias": {
"dev-master": "2.0.x-dev"
}
},
"minimum-stability": "dev",
"prefer-stable": true
}