forked from timegridio/concierge
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
60 lines (59 loc) · 1.42 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
{
"name": "akrz/concierge",
"type": "library",
"description": "A Laravel 5.x reservation library",
"keywords": [
"laravel",
"timegrid",
"concierge",
"booking",
"reservation"
],
"homepage": "https://github.com/timegridio/concierge",
"license": "MIT",
"authors": [
{
"name": "Ariel Vallese",
"email": "alariva@gmail.com",
"homepage": "http://timegrid.io",
"role": "Developer"
}
],
"require": {
"php": ">=5.5.9",
"illuminate/support": "~5.3",
"mccool/laravel-auto-presenter": "~6.0",
"doctrine/dbal": "~2.5"
},
"require-dev": {
"phpunit/phpunit": "~5.0",
"phpspec/phpspec": "~2.1",
"codeclimate/php-test-reporter": "dev-master",
"laracasts/testdummy": "~2.3",
"orchestra/testbench": "~3.3"
},
"autoload": {
"classmap": [
],
"psr-4": {
"Timegridio\\Concierge\\": "src"
}
},
"autoload-dev": {
"classmap": [
"tests/TestCaseDB.php"
],
"psr-4": {
"Timegridio\\Tests\\Models\\": "tests/models"
}
},
"scripts": {
"test": "vendor/bin/phpunit --stop-on-failure --stop-on-error"
},
"extra": {
"branch-alias": {
"dev-master": "0.7-dev"
}
},
"minimum-stability": "stable"
}