-
Notifications
You must be signed in to change notification settings - Fork 37
Expand file tree
/
Copy pathcomposer.json
More file actions
29 lines (29 loc) · 754 Bytes
/
Copy pathcomposer.json
File metadata and controls
29 lines (29 loc) · 754 Bytes
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
{
"name": "camroncade/timezone",
"description": "Helps manage timezones in Laravel. Includes <select> form builder for timezones.",
"homepage": "http://www.camroncade.com/managing-timezones-with-laravel/",
"keywords": ["timezone", "timezones"],
"license": "MIT",
"authors": [
{
"name": "Camron Cade",
"email": "camron@camroncade.com"
}
],
"require": {
"php": ">=5.4.0",
"illuminate/support": ">=4.2"
},
"autoload": {
"classmap": [
"src/migrations"
],
"psr-0": {
"Camroncade\\Timezone\\": "src/"
}
},
"minimum-stability": "stable",
"require-dev": {
"phpunit/phpunit": "^5.3"
}
}