Skip to content

Commit

Permalink
Initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
rappasoft committed Feb 4, 2015
0 parents commit e088fa2
Show file tree
Hide file tree
Showing 4 changed files with 815 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
/vendor
composer.phar
composer.lock
.DS_Store
.idea
22 changes: 22 additions & 0 deletions composer.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
{
"name": "rappasoft/laravel-helpers",
"description": "Laravel Helpers for Non-Laravel Projects",
"license": "MIT",
"keywords": ["laravel", "helpers"],
"authors": [
{
"name": "Anthony Rappa",
"email": "rappa819@gmail.com"
}
],
"require": {
"php": ">=5.4.0",
"illuminate/support": "~5.0"
},
"autoload": {
"files": [
"src/helpers.php"
]
},
"minimum-stability": "stable"
}
5 changes: 5 additions & 0 deletions readme.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
# Laravel 5 Helpers for Non-Laravel Projects

This project takes the useful [Laravel helper functions](http://laravel.com/docs/5.0/helpers) and allows you to use them in Non-Laravel projects.

**Incomplete do not download.**
Loading

0 comments on commit e088fa2

Please sign in to comment.