-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
53 lines (53 loc) · 1.09 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
{
"name": "iolson/support",
"description": "Opinionated Laravel Support Package",
"keywords": [
"laravel",
"php",
"support"
],
"homepage": "https://github.com/iolson/support",
"license": "MIT",
"authors": [
{
"name": "Ian Olson",
"email": "[email protected]"
}
],
"require": {
"php": ">=5.5.9",
"illuminate/support": "^5.1|^5.2",
"illuminate/database": "^5.1|^5.2",
"illuminate/events": "^5.1|^5.2",
"illuminate/console": "^5.1|^5.2",
"symfony/http-foundation": "2.7.*|^3.0",
"illuminate/routing": "^5.1|^5.2",
"ramsey/uuid": "^3.2"
},
"require-dev": {
"mockery/mockery": "~0.9",
"phpunit/phpunit": "~4.0",
"phpspec/phpspec": "~2.1",
"scrutinizer/ocular": "~1.1",
"fzaninotto/faker": "^1.5",
"squizlabs/php_codesniffer": "^2.5"
},
"autoload": {
"classmap": [
"tests"
],
"psr-4": {
"IanOlson\\Support\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"IanOlson\\Support\\Test\\": "tests/"
}
},
"scripts": {
"test": [
"vendor/bin/phpunit"
]
}
}