Skip to content

Commit

Permalink
rename
Browse files Browse the repository at this point in the history
  • Loading branch information
biiiiiigmonster committed Dec 21, 2020
1 parent 4d10b6f commit 6e8e7c3
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 13 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@
# LARAVEL MIXIN

<p>
<a href="https://github.com/biiiiiigmonster/laravel-mixin/blob/master/LICENSE"><img src="https://img.shields.io/badge/license-MIT-7389D8.svg?style=flat" ></a>
<a href="https://github.com/biiiiiigmonster/laravel-mixin/releases" ><img src="https://img.shields.io/github/release/biiiiiigmonster/laravel-mixin.svg?color=4099DE" /></a>
<a href="https://packagist.org/packages/biiiiiigmonster/laravel-mixin"><img src="https://img.shields.io/packagist/dt/biiiiiigmonster/laravel-mixin.svg?color=" /></a>
<a href="https://github.com/biiiiiigmonster/hasin/blob/master/LICENSE"><img src="https://img.shields.io/badge/license-MIT-7389D8.svg?style=flat" ></a>
<a href="https://github.com/biiiiiigmonster/hasin/releases" ><img src="https://img.shields.io/github/release/biiiiiigmonster/hasin.svg?color=4099DE" /></a>
<a href="https://packagist.org/packages/biiiiiigmonster/hasin"><img src="https://img.shields.io/packagist/dt/biiiiiigmonster/hasin.svg?color=" /></a>
<a><img src="https://img.shields.io/badge/php-7+-59a9f8.svg?style=flat" /></a>
</p>

Expand All @@ -23,7 +23,7 @@
## 安装

```bash
composer require biiiiiigmonster/laravel-mixin
composer require biiiiiigmonster/hasin
```

### 简介
Expand Down
8 changes: 4 additions & 4 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "biiiiiigmonster/laravel-mixin",
"description": "Laravel framework mixin",
"name": "biiiiiigmonster/hasin",
"description": "Laravel framework relation has in implement",
"type": "library",
"keywords": ["laravel", "orm", "relation", "whereHas"],
"license": "MIT",
Expand All @@ -12,11 +12,11 @@
],
"autoload": {
"psr-4": {
"BiiiiiigMonster\\LaravelMixin\\": "src/"
"BiiiiiigMonster\\Hasin\\": "src/"
}
},
"minimum-stability": "dev",
"require": {
"laravel/framework": "^7.0"
"laravel/framework": ">=5.5"
}
}
2 changes: 1 addition & 1 deletion src/Database/Eloquent/BuilderMixin.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<?php
namespace BiiiiiigMonster\LaravelMixin\Database\Eloquent;
namespace BiiiiiigMonster\Hasin\Database\Eloquent;

use Closure;
use Illuminate\Database\Eloquent\Builder;
Expand Down
3 changes: 1 addition & 2 deletions src/Database/Eloquent/RelationMixin.php
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
<?php


namespace BiiiiiigMonster\LaravelMixin\Database\Eloquent;
namespace BiiiiiigMonster\Hasin\Database\Eloquent;

use Closure;
use Illuminate\Database\Eloquent\Builder;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
<?php
namespace BiiiiiigMonster\LaravelMixin;
namespace BiiiiiigMonster\Hasin;

use BiiiiiigMonster\LaravelMixin\Database\Eloquent\BuilderMixin;
use BiiiiiigMonster\LaravelMixin\Database\Eloquent\RelationMixin;
use Illuminate\Database\Eloquent\Builder;
use Illuminate\Database\Eloquent\Relations\Relation;
use Illuminate\Support\ServiceProvider;

class LaravelMixinServiceProvider extends ServiceProvider
class HasinServiceProvider extends ServiceProvider
{
public function register()
{
Expand Down

0 comments on commit 6e8e7c3

Please sign in to comment.