Skip to content

Commit 9e8c5bc

Browse files
committed
add editorconfig. Add l10 for illuminate support
1 parent 66074ec commit 9e8c5bc

File tree

2 files changed

+52
-37
lines changed

2 files changed

+52
-37
lines changed

.editorconfig

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
root = true
2+
3+
[*]
4+
charset = utf-8
5+
end_of_line = lf
6+
indent_size = 4
7+
indent_style = space
8+
insert_final_newline = true
9+
trim_trailing_whitespace = true
10+
11+
[*.md]
12+
trim_trailing_whitespace = false
13+
14+
[*.{yml,yaml}]
15+
indent_size = 2

composer.json

+37-37
Original file line numberDiff line numberDiff line change
@@ -1,40 +1,40 @@
11
{
2-
"name": "petehouston/laravel-tinymce-simple-imageupload",
3-
"description": "Simple image upload for TinyMCE in Laravel.",
4-
"version": "1.3.1",
5-
"type": "library",
6-
"license": "MIT",
7-
"keywords": [
8-
"laravel",
9-
"laravel 5",
10-
"laravel 7",
11-
"laravel 8",
12-
"tinymce",
13-
"image upload",
14-
"php"
15-
],
16-
"homepage": "https://github.com/petehouston/laravel-tinymce-simple-imageupload",
17-
"authors": [
18-
{
19-
"name": "Pete Houston",
20-
"email": "contact@petehouston.com",
21-
"homepage": "http://petehouston.com"
22-
}
23-
],
24-
"require": {
25-
"illuminate/support": "~5.1|~6.0|~7.0|~8.0|~9.0",
26-
"php" : "~5.5|~5.6|7.*|8.*"
27-
},
28-
"autoload": {
29-
"psr-4": {
30-
"Petehouston\\Tinymce\\": "src"
31-
}
32-
},
33-
"extra": {
34-
"laravel": {
35-
"providers": [
36-
"Petehouston\\Tinymce\\TinymceServiceProvider"
37-
]
38-
}
2+
"name": "petehouston/laravel-tinymce-simple-imageupload",
3+
"description": "Simple image upload for TinyMCE in Laravel.",
4+
"version": "1.3.1",
5+
"type": "library",
6+
"license": "MIT",
7+
"keywords": [
8+
"laravel",
9+
"laravel 5",
10+
"laravel 7",
11+
"laravel 8",
12+
"tinymce",
13+
"image upload",
14+
"php"
15+
],
16+
"homepage": "https://github.com/petehouston/laravel-tinymce-simple-imageupload",
17+
"authors": [
18+
{
19+
"name": "Pete Houston",
20+
"email": "contact@petehouston.com",
21+
"homepage": "http://petehouston.com"
3922
}
23+
],
24+
"require": {
25+
"illuminate/support": "~5.1|~6.0|~7.0|~8.0|~9.0|~10.0",
26+
"php": "~5.5|~5.6|7.*|8.*"
27+
},
28+
"autoload": {
29+
"psr-4": {
30+
"Petehouston\\Tinymce\\": "src"
31+
}
32+
},
33+
"extra": {
34+
"laravel": {
35+
"providers": [
36+
"Petehouston\\Tinymce\\TinymceServiceProvider"
37+
]
38+
}
39+
}
4040
}

0 commit comments

Comments
 (0)