File tree 5 files changed +39
-0
lines changed
5 files changed +39
-0
lines changed Original file line number Diff line number Diff line change
1
+ # Editor Configuration
2
+ #
3
+ # EditorConfig helps developers define and maintain consistent coding styles between
4
+ # different editors and IDEs.
5
+ #
6
+ # For more information about this file visit https://editorconfig.org
7
+ #
8
+ root = true
9
+
10
+ [* ]
11
+ indent_style = space
12
+ indent_size = 4
13
+ end_of_line = lf
14
+ insert_final_newline = true
15
+ trim_trailing_whitespace = true
16
+
17
+ [* .{json} ]
18
+ indent_size = 2
Original file line number Diff line number Diff line change
1
+ # PHP Library Skeleton
2
+
3
+ This repository contains a pre-configured skeleton to make starting a new library from the ground up a little easier.
4
+
5
+ ## Install
6
+
7
+ 1 . Download [ Composer] ( https://getcomposer.org ) or update ` composer selfupdate ` .
8
+ 2 . Run ` composer create-project --prefer-dist sdustinh/php-libskel [lib_name] ` .
Original file line number Diff line number Diff line change
1
+ {
2
+ "name" : " sdustinh/php-libskel" ,
3
+ "description" : " A bootstrap PHP library skeleton." ,
4
+ "type" : " library" ,
5
+ "homepage" : " https://github.com/sdustinh/php-libskel" ,
6
+ "support" : {
7
+ "issues" : " https://github.com/sdustinh/php-libskel/issues"
8
+ },
9
+ "config" : {
10
+ "sort-packages" : true
11
+ },
12
+ "prefer-stable" : true
13
+ }
You can’t perform that action at this time.
0 commit comments