Skip to content

Commit b4c658b

Browse files
committed
Initial skeleton.
Nothing special yet, just a little structure to get the ball rolling.
0 parents  commit b4c658b

File tree

5 files changed

+39
-0
lines changed

5 files changed

+39
-0
lines changed

.editorconfig

+18
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
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

README.md

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
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]`.

composer.json

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
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+
}

src/empty

Whitespace-only changes.

tests/empty

Whitespace-only changes.

0 commit comments

Comments
 (0)