This repository has been archived by the owner on Oct 26, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcomposer.json
77 lines (76 loc) · 1.76 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
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "defenestrator/hatches-api",
"description": "On-stream fly fishing tools API",
"keywords": [
"Fly fishing",
"API"
],
"repositories": [
{
"type": "vcs",
"url": "https://github.com/edos-io/sami.git"
}
],
"license": "MIT",
"type": "project",
"require": {
"laravel/framework": "~5.1.0",
"league/glide": "~0.3.3",
"spatie/laravel-glide": "~2.0.0",
"league/fractal": "~0.13",
"sorskod/larasponse": "dev-L5",
"laravelcollective/html": "~5.1.0",
"graham-campbell/markdown": "~3.0"
},
"require-dev": {
"phpunit/phpunit": "~4.5.0",
"whatthejeff/nyancat-phpunit-resultprinter": "~1.2",
"phpspec/phpspec": "~2.1",
"phpspec/prophecy": "~1.3.1",
"phpspec/nyan-formatters": "1.*",
"behat/behat": "~3.0@dev",
"behat/mink": "~1.7@dev",
"behat/mink-extension": "~2.0@dev",
"laracasts/behat-laravel-extension": "dev-master",
"laracasts/testdummy": "~2.0",
"doctrine/dbal": "~2.6@dev",
"fzaninotto/faker": "~1.4",
"benconstable/phpspec-laravel": "~2.0@dev",
"curl/curl": "1.2.1",
"symfony/yaml": "~2.1.0",
"edos-io/sami": "3.0.2"
},
"autoload": {
"classmap": [
"database"
],
"psr-4": {
"Hatches\\": "app/"
}
},
"autoload-dev": {
"classmap": [
"tests/TestCase.php",
"tests/support",
"tests/acceptance"
]
},
"scripts": {
"post-install-cmd": [
"php artisan clear-compiled",
"php artisan optimize"
],
"post-update-cmd": [
"php artisan clear-compiled",
"php artisan optimize"
],
"post-create-project-cmd": [
"php artisan key:generate",
"php artisan docs"
]
},
"config": {
"preferred-install": "source"
},
"minimum-stability": "dev"
}