File tree 4 files changed +1185
-11
lines changed
4 files changed +1185
-11
lines changed Original file line number Diff line number Diff line change
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
Original file line number Diff line number Diff line change 1
1
.idea /
2
2
composer.phar
3
- composer.lock
4
3
vendor /
Original file line number Diff line number Diff line change 10
10
}
11
11
],
12
12
"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"
21
20
},
22
21
"autoload" : {
23
22
"psr-4" : {
34
33
},
35
34
"extra" : {
36
35
"branch-alias" : {
37
- "dev-develop" : " 2.1 -dev"
36
+ "dev-develop" : " 2.2 -dev"
38
37
}
39
38
},
40
- "minimum-stability" : " dev "
39
+ "minimum-stability" : " stable "
41
40
}
You can’t perform that action at this time.
0 commit comments