Skip to content

Commit

Permalink
change vendor to quix labs
Browse files Browse the repository at this point in the history
  • Loading branch information
alancolant committed Mar 24, 2024
1 parent 2b8222f commit 2a836d1
Show file tree
Hide file tree
Showing 9 changed files with 25 additions and 26 deletions.
6 changes: 3 additions & 3 deletions .github/ISSUE_TEMPLATE/config.yml
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
blank_issues_enabled: false
contact_links:
- name: Ask a question
url: https://github.com/alancolant/flysystem-supabase-adapter/discussions/new?category=q-a
url: https://github.com/quix-labs/laravel-supabase-flysystem/discussions/new?category=q-a
about: Ask the community for help
- name: Request a feature
url: https://github.com/alancolant/flysystem-supabase-adapter/discussions/new?category=ideas
url: https://github.com/quix-labs/laravel-supabase-flysystem/discussions/new?category=ideas
about: Share ideas for new features
- name: Report a security issue
url: https://github.com/alancolant/flysystem-supabase-adapter/security/policy
url: https://github.com/quix-labs/laravel-supabase-flysystem/security/policy
about: Learn how to notify us for sensitive bugs
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@ All notable changes to `flysystem-supabase-adapter` will be documented in this f

## 1.0.0 - 2023-12-21

**Full Changelog**: https://github.com/alancolant/flysystem-supabase-adapter/compare/0.1...1.0.0
**Full Changelog**: https://github.com/quix-labs/laravel-supabase-flysystem/compare/0.1...1.0.0
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
# Laravel Supabase Storage Adapter

[![Latest Version on Packagist](https://img.shields.io/packagist/v/alancolant/flysystem-supabase-adapter.svg?style=flat-square)](https://packagist.org/packages/alancolant/flysystem-supabase-adapter)
[![GitHub Tests Action Status](https://img.shields.io/github/actions/workflow/status/alancolant/flysystem-supabase-adapter/run-tests.yml?branch=main&label=tests&style=flat-square)](https://github.com/alancolant/flysystem-supabase-adapter/actions?query=workflow%3Arun-tests+branch%3Amain)
[![GitHub Code Style Action Status](https://img.shields.io/github/actions/workflow/status/alancolant/flysystem-supabase-adapter/fix-php-code-style-issues.yml?branch=main&label=code%20style&style=flat-square)](https://github.com/alancolant/flysystem-supabase-adapter/actions?query=workflow%3A"Fix+PHP+code+style+issues"+branch%3Amain)
[![Total Downloads](https://img.shields.io/packagist/dt/alancolant/flysystem-supabase-adapter.svg?style=flat-square)](https://packagist.org/packages/alancolant/flysystem-supabase-adapter)
[![Latest Version on Packagist](https://img.shields.io/packagist/v/quix-labs/laravel-supabase-flysystem.svg?style=flat-square)](https://packagist.org/packages/quix-labs/laravel-supabase-flysystem)
[![GitHub Tests Action Status](https://img.shields.io/github/actions/workflow/status/quix-labs/laravel-supabase-flysystem/run-tests.yml?branch=main&label=tests&style=flat-square)](https://github.com/quix-labs/laravel-supabase-flysystem/actions?query=workflow%3Arun-tests+branch%3Amain)
[![GitHub Code Style Action Status](https://img.shields.io/github/actions/workflow/status/quix-labs/laravel-supabase-flysystem/fix-php-code-style-issues.yml?branch=main&label=code%20style&style=flat-square)](https://github.com/quix-labs/laravel-supabase-flysystem/actions?query=workflow%3A"Fix+PHP+code+style+issues"+branch%3Amain)
[![Total Downloads](https://img.shields.io/packagist/dt/quix-labs/laravel-supabase-flysystem.svg?style=flat-square)](https://packagist.org/packages/quix-labs/laravel-supabase-flysystem)

___
Easily integrate Supabase as a storage driver in Laravel with this Flysystem adapter.
Expand All @@ -21,7 +21,7 @@ ___

To install the package, use Composer:
```bash
composer require alancolant/flysystem-supabase-adapter
composer require quix-labs/laravel-supabase-flysystem
```

#### Configuration
Expand Down
21 changes: 10 additions & 11 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,13 +1,12 @@
{
"name": "alancolant/flysystem-supabase-adapter",
"name": "quix-labs/laravel-supabase-flysystem",
"description": "This package allow you to use Supabase Storage in Laravel",
"keywords": [
"alancolant",
"flysystem-supabase-adapter",
"flysystem",
"supabase",
"laravel"
],
"homepage": "https://github.com/alancolant/flysystem-supabase-adapter",
"homepage": "https://github.com/quix-labs/laravel-supabase-flysystem",
"license": "MIT",
"authors": [
{
Expand All @@ -20,10 +19,10 @@
"php": "^8.1",
"ext-fileinfo": "*",
"guzzlehttp/guzzle": "^7.2",
"illuminate/contracts": "^10.0",
"illuminate/filesystem": "^10.0",
"illuminate/http": "^10.0",
"illuminate/support": "^10.0",
"illuminate/contracts": "^10.0|^11.0",
"illuminate/filesystem": "^10.0|^11.0",
"illuminate/http": "^10.0|^11.0",
"illuminate/support": "^10.0|^11.0",
"league/flysystem": "^3.0"
},
"require-dev": {
Expand All @@ -40,12 +39,12 @@
},
"autoload": {
"psr-4": {
"Alancolant\\FlysystemSupabaseAdapter\\": "src/"
"QuixLabs\\LaravelSupabaseFlysystem\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Alancolant\\FlysystemSupabaseAdapter\\Tests\\": "tests/",
"QuixLabs\\LaravelSupabaseFlysystem\\Tests\\": "tests/",
"Workbench\\App\\": "workbench/app/"
}
},
Expand Down Expand Up @@ -77,7 +76,7 @@
"extra": {
"laravel": {
"providers": [
"Alancolant\\FlysystemSupabaseAdapter\\ServiceProvider"
"QuixLabs\\LaravelSupabaseFlysystem\\ServiceProvider"
]
}
},
Expand Down
2 changes: 1 addition & 1 deletion phpunit.xml.dist
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
backupStaticProperties="false"
>
<testsuites>
<testsuite name="Alancolant Test Suite">
<testsuite name="QuixLabsSupabaseFlysystemAdapter Test Suite">
<directory>tests</directory>
</testsuite>
</testsuites>
Expand Down
2 changes: 1 addition & 1 deletion src/ServiceProvider.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php

namespace Alancolant\FlysystemSupabaseAdapter;
namespace QuixLabs\LaravelSupabaseFlysystem;

use Illuminate\Contracts\Foundation\Application;
use Illuminate\Filesystem\FilesystemAdapter;
Expand Down
2 changes: 1 addition & 1 deletion src/SupabaseAdapter.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php

namespace Alancolant\FlysystemSupabaseAdapter;
namespace QuixLabs\LaravelSupabaseFlysystem;

use GuzzleHttp\Psr7\Utils;
use Illuminate\Http\Client\PendingRequest;
Expand Down
2 changes: 1 addition & 1 deletion tests/Pest.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<?php

use Alancolant\FlysystemSupabaseAdapter\Tests\TestCase;
use QuixLabs\LaravelSupabaseFlysystem\Tests\TestCase;

uses(TestCase::class)->in(__DIR__);
4 changes: 2 additions & 2 deletions tests/TestCase.php
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
<?php

namespace Alancolant\FlysystemSupabaseAdapter\Tests;
namespace QuixLabs\LaravelSupabaseFlysystem\Tests;

use Alancolant\FlysystemSupabaseAdapter\ServiceProvider;
use QuixLabs\LaravelSupabaseFlysystem\ServiceProvider;
use Orchestra\Testbench\TestCase as Orchestra;

class TestCase extends Orchestra
Expand Down

0 comments on commit 2a836d1

Please sign in to comment.