Skip to content

Commit

Permalink
Version 1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Jason Jones committed May 22, 2019
1 parent 72b7635 commit 5a8df39
Show file tree
Hide file tree
Showing 11 changed files with 4,315 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/
.phpunit.result.cache
.idea/
26 changes: 26 additions & 0 deletions composer.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
{
"name": "unraveledmnd/eloquent-slugs",
"description": "A package for definining and generating slugs on Eloquent models.",
"require": {
"illuminate/database": "^5.8"
},
"authors": [
{
"name": "Jason Jones",
"email": "jason.erik.jones+github@gmail.com"
}
],
"autoload": {
"psr-4": {
"Jasonej\\EloquentSlugs\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Jasonej\\EloquentSlugs\\Tests\\": "tests/"
}
},
"require-dev": {
"orchestra/testbench": "^3.8"
}
}
Loading

0 comments on commit 5a8df39

Please sign in to comment.