-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
42 lines (42 loc) · 1.04 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
{
"name": "gregoriohc/laravel-preview",
"description": "Views preview package for Laravel",
"keywords": ["laravel", "package", "view", "preview"],
"homepage": "https://github.com/gregoriohc/preview",
"license": "MIT",
"authors": [
{
"name": "Gregorio Hernández Caso",
"email": "[email protected]"
}
],
"require": {
"php": ">=5.4.0",
"illuminate/support": "5.1.*|5.2.*|5.3.*",
"illuminate/view": "5.1.*|5.2.*|5.3.*",
"illuminate/routing": "5.1.*|5.2.*|5.3.*",
"illuminate/http": "5.1.*|5.2.*|5.3.*",
"illuminate/database": "5.1.*|5.2.*|5.3.*"
},
"require-dev": {
"phpunit/phpunit": "~4.0",
"mockery/mockery": "^0.9.5",
"codeclimate/php-test-reporter": "dev-master",
"orchestra/testbench": "~3.0"
},
"autoload": {
"psr-4": {
"Gregoriohc\\Preview\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Gregoriohc\\Preview\\Tests\\": "tests"
}
},
"scripts": {
"test": "vendor/bin/phpunit"
},
"minimum-stability": "dev",
"prefer-stable": true
}