-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Jason Jones
committed
May 22, 2019
1 parent
72b7635
commit 5a8df39
Showing
11 changed files
with
4,315 additions
and
0 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 |
---|---|---|
@@ -0,0 +1,3 @@ | ||
vendor/ | ||
.phpunit.result.cache | ||
.idea/ |
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,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" | ||
} | ||
} |
Oops, something went wrong.