-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
keeping it simple to autoload new files with fantastic dependency manager
- Loading branch information
1 parent
cf52cd6
commit 3f46f82
Showing
4 changed files
with
24 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,3 @@ | ||
/data/* | ||
!/data/.gitkeep | ||
/vendor |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
{ | ||
"name": "tonicospinelli/developing-for-business", | ||
"description": "A Quick Project to show how to is possible evolute application in Flat PHP to Object Oriented PHP", | ||
"license": "MIT", | ||
"authors": [ | ||
{ | ||
"name": "Antonio Spinelli", | ||
"email": "[email protected]" | ||
} | ||
], | ||
"autoload": { | ||
"files": [ | ||
"./lib/dbconn.php", | ||
"./lib/functions.php", | ||
"./lib/controllers/product.php", | ||
"./lib/controllers/wishlist.php", | ||
"./lib/models/product.php", | ||
"./lib/models/wishlist.php" | ||
] | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters