From 82ca2c025c495e386fa4bf7cc714bfe9d38d34ba Mon Sep 17 00:00:00 2001 From: Paul Dragoonis Date: Thu, 15 Dec 2016 18:26:32 +0000 Subject: [PATCH 1/2] Adding in recommended directory structure --- README.md | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/README.md b/README.md index fe1460c..ddbf75e 100644 --- a/README.md +++ b/README.md @@ -12,6 +12,19 @@ This is where your description should go. Try and limit it to a paragraph or two, and maybe throw in a mention of what PSRs you support to avoid any confusion with users and contributors. +## Structure + +If any of the following are applicable to your project, then the directory structure should follow industry best practises by being named the following. + +``` +bin/ +config/ +vendor/ +src/ +test/ +``` + + ## Install Via Composer From cc1c74c6b8cf1f464b972f3cd2a516924d1603a6 Mon Sep 17 00:00:00 2001 From: Paul Dragoonis Date: Thu, 15 Dec 2016 18:28:35 +0000 Subject: [PATCH 2/2] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index ddbf75e..837a843 100644 --- a/README.md +++ b/README.md @@ -19,9 +19,9 @@ If any of the following are applicable to your project, then the directory struc ``` bin/ config/ -vendor/ src/ test/ +vendor/ ```