Skip to content

Commit

Permalink
first commit
Browse files Browse the repository at this point in the history
  • Loading branch information
jwohlfert23 committed Jan 30, 2018
0 parents commit 5f80594
Show file tree
Hide file tree
Showing 9 changed files with 842 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
/vendor
.DS_Store
.idea/
47 changes: 47 additions & 0 deletions composer.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
{
"name": "jwohlfert23/laravel-seo",
"description": "SEO tools to insert meta data in laravel projects",
"keywords": [
"laravel",
"seo"
],
"license": "MIT",
"authors": [
{
"name": "Jack Wohlfert",
"email": "[email protected]"
}
],
"repositories": [
{
"type": "git",
"url": "https://github.com/jwohlfert23/laravel-seo.git"
}
],
"autoload": {
"psr-4": {
"Jwohlfert23\\LaravelSeo\\": "src/"
}
},
"require": {
"php": ">=5.5.9",
"nesbot/carbon": "^1.22",
"illuminate/config": "~5",
"illuminate/support": "~5"
},
"require-dev": {
},
"extra": {
"laravel": {
"providers": [
"Jwohlfert23\\LaravelSeo\\ServiceProvider"
]
}
},
"config": {
"preferred-install": "dist"
},
"minimum-stability": "dev",
"prefer-stable": true

}
Loading

0 comments on commit 5f80594

Please sign in to comment.