Skip to content

Commit 404c5cd

Browse files
committed
Initial commit
0 parents  commit 404c5cd

File tree

4 files changed

+43
-0
lines changed

4 files changed

+43
-0
lines changed

CHANGELOG.md

Whitespace-only changes.

README.md

Whitespace-only changes.

composer.json

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
{
2+
"name": "softinklab/laravel-keyvalue-storage",
3+
"description": "Key-Value Storage for Laravel via Database",
4+
"type": "library",
5+
"require": {
6+
"illuminate/support": "^8.0@dev",
7+
"php": "7.2"
8+
},
9+
"require-dev": {
10+
"phpunit/phpunit": "^9.1@dev"
11+
},
12+
"autoload": {
13+
"psr-4" : {
14+
"SoftinkLab\\LaravelKeyvalueStorage\\" : "src"
15+
}
16+
},
17+
"license": "MIT",
18+
"authors": [
19+
{
20+
"name": "Pasan Bhanu Guruge",
21+
"email": "pasan@softinklab.com"
22+
}
23+
],
24+
"minimum-stability": "dev"
25+
}
Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
<?php
2+
3+
namespace SoftinkLab\LaravelKeyvalueStorage\Providers;
4+
5+
use Illuminate\Support\ServiceProvider;
6+
7+
class KeyValueStorageServiceProvider extends ServiceProvider
8+
{
9+
public function boot()
10+
{
11+
12+
}
13+
14+
public function register()
15+
{
16+
17+
}
18+
}

0 commit comments

Comments
 (0)