Skip to content

Commit

Permalink
Initial Commit
Browse files Browse the repository at this point in the history
  • Loading branch information
ruark committed Apr 16, 2024
0 parents commit 0f7cdd3
Show file tree
Hide file tree
Showing 3 changed files with 36 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
.idea
vendor
composer.lock
.phpunit.result.cache
19 changes: 19 additions & 0 deletions composer.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
{
"name": "ruark/laravel-inn",
"description": "INN validation",
"license": "MIT",
"authors": [
{
"name": "Yuriy Ruark",
"email": "[email protected]"
}
],
"require": {
"php": "^7.4"
},
"autoload": {
"psr-4": {
"Ruark\\LaravelInn\\": "src/"
}
}
}
13 changes: 13 additions & 0 deletions src/InnValidatorServiceProvider.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
<?php

namespace Ruark\LaravelInn;

use Illuminate\Support\ServiceProvider;

class InnValidatorServiceProvider extends ServiceProvider
{
public function boot():void
{

}
}

0 comments on commit 0f7cdd3

Please sign in to comment.