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 667dbbe commit f291e93Copy full SHA for f291e93
composer.json
@@ -16,6 +16,11 @@
16
"role": "Developer"
17
}
18
],
19
+ "autoload": {
20
+ "psr-4": {
21
+ "JakeRyanSmith\\ValidateStringOfEmails\\": "src"
22
+ }
23
+ },
24
"require": {
25
"php": "^7.2",
26
"illuminate/support": "^5.5"
src/StringOfEmails.php
@@ -1,6 +1,6 @@
1
<?php
2
3
-namespace App\Rules;
+namespace JakeRyanSmith\ValidateStringOfEmails;
4
5
use Illuminate\Support\Facades\Validator;
6
use Illuminate\Contracts\Validation\Rule;
src/ValidationRulesServiceProvider.php
-namespace JakeRyanSmith\ValidationRules;
use Illuminate\Support\ServiceProvider;
0 commit comments