We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 06e1046 commit 12a3b88Copy full SHA for 12a3b88
composer.json
@@ -1,9 +1,11 @@
1
{
2
"name": "langleyfoxall/laravel-redacted-model",
3
- "description": "Laravel Redacted Model allows you to easily dynamically omitt and redact fields from Laravel Models",
+ "description": "Laravel Redacted Model allows you to easily dynamically omit and redact fields from Laravel Models",
4
"type": "library",
5
"require": {
6
- "php": "^7.0.0"
+ "php": "^7.0.0",
7
+ "illuminate/support": ">=5.0",
8
+ "illuminate/database": ">=5.0"
9
},
10
"autoload": {
11
"psr-4": {
src/LangleyFoxall/RedactedModel/RedactedModel.php
@@ -2,7 +2,6 @@
namespace LangleyFoxall\RedactedModel;
-
use Illuminate\Database\Eloquent\Model;
use Illuminate\Support\Str;
0 commit comments