Skip to content

Commit c93cdc5

Browse files
committed
Update composer.json for support Laravel 5.2
1 parent 59f773d commit c93cdc5

File tree

4 files changed

+1185
-11
lines changed

4 files changed

+1185
-11
lines changed

.editorconfig

+38
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
# This file is for unifying the coding style for different editors and IDEs
2+
# editorconfig.org
3+
4+
root = true
5+
6+
[*]
7+
charset = utf-8
8+
trim_trailing_whitespace = true
9+
insert_final_newline = true
10+
end_of_line = lf
11+
12+
[**.less]
13+
indent_style = tab
14+
indent_size = 2
15+
16+
[**.{css,scss}]
17+
indent_style = tab
18+
indent_size = 2
19+
20+
[**.php]
21+
indent_style = space
22+
indent_size = 4
23+
24+
[**.html]
25+
indent_style = tab
26+
indent_size = 2
27+
28+
[**.js]
29+
indent_style = space
30+
indent_size = 2
31+
32+
[**.yml]
33+
indent_style = space
34+
indent_size = 2
35+
insert_final_newline = false
36+
37+
[**.md]
38+
indent_size = 4

.gitignore

-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
11
.idea/
22
composer.phar
3-
composer.lock
43
vendor/

composer.json

+9-10
Original file line numberDiff line numberDiff line change
@@ -10,14 +10,13 @@
1010
}
1111
],
1212
"require": {
13-
"php": ">=5.4.0",
14-
"illuminate/http": "~5.0|~5.1",
15-
"illuminate/config": "~5.0|~5.1",
16-
"illuminate/support": "~5.0|~5.1",
17-
"illuminate/database": "~5.0|~5.1",
18-
"illuminate/pagination": "~5.0|~5.1",
19-
"illuminate/console": "~5.0|~5.1",
20-
"illuminate/filesystem": "~5.0|~5.1"
13+
"illuminate/http": "~5.0|~5.1|~5.2",
14+
"illuminate/config": "~5.0|~5.1|~5.2",
15+
"illuminate/support": "~5.0|~5.1|~5.2",
16+
"illuminate/database": "~5.0|~5.1|~5.2",
17+
"illuminate/pagination": "~5.0|~5.1|~5.2",
18+
"illuminate/console": "~5.0|~5.1|~5.2",
19+
"illuminate/filesystem": "~5.0|~5.1|~5.2"
2120
},
2221
"autoload": {
2322
"psr-4": {
@@ -34,8 +33,8 @@
3433
},
3534
"extra": {
3635
"branch-alias": {
37-
"dev-develop": "2.1-dev"
36+
"dev-develop": "2.2-dev"
3837
}
3938
},
40-
"minimum-stability": "dev"
39+
"minimum-stability": "stable"
4140
}

0 commit comments

Comments
 (0)