Skip to content

Commit ad80741

Browse files
committed
Added Editor Configuration & Composer
Added editor configuration with PHP specific configuration, and added composer.
1 parent d54a0ab commit ad80741

File tree

2 files changed

+19
-0
lines changed

2 files changed

+19
-0
lines changed

.editorconfig

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
root = true
2+
3+
[*]
4+
indent_style = tab
5+
indent_size = 4
6+
trim_trailing_whitespace = true
7+
insert_final_newline = false
8+
9+
[*.php]
10+
indent_style = space
11+
insert_final_newline = true

composer.json

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
{
2+
"name": "epickris/data-format",
3+
"autoload": {
4+
"psr-4": {
5+
"EpicKris\\": "src/"
6+
}
7+
}
8+
}

0 commit comments

Comments
 (0)