-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
executable file
·36 lines (36 loc) · 1007 Bytes
/
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
{
"name": "alexweissman/phpworld2017",
"type": "project",
"description": "Skeleton project for 'Hacking Laravel: Custom Relationships in Eloquent' workshop at php[world] 2017.",
"keywords": ["Laravel", "Eloquent", "ORM", "workshop", "phpworld", "phpworld2017"],
"homepage": "https://github.com/alexweissman/phpworld2017",
"license" : "MIT",
"authors" : [
{
"name": "Alexander Weissman",
"homepage": "https://alexanderweissman.com"
}
],
"require": {
"php": ">=5.6",
"illuminate/database": "5.4.*",
"illuminate/events": "5.4.*",
"monolog/monolog": "^1",
"userfrosting/support": "^4.1.1"
},
"require-dev": {
"phpunit/phpunit": "^5.7"
},
"minimum-stability": "dev",
"prefer-stable": true,
"autoload": {
"psr-4": {
"App\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"App\\Tests\\": "tests/"
}
}
}