Skip to content

Commit 2a836d1

Browse files
committed
change vendor to quix labs
1 parent 2b8222f commit 2a836d1

File tree

9 files changed

+25
-26
lines changed

9 files changed

+25
-26
lines changed

.github/ISSUE_TEMPLATE/config.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
blank_issues_enabled: false
22
contact_links:
33
- name: Ask a question
4-
url: https://github.com/alancolant/flysystem-supabase-adapter/discussions/new?category=q-a
4+
url: https://github.com/quix-labs/laravel-supabase-flysystem/discussions/new?category=q-a
55
about: Ask the community for help
66
- name: Request a feature
7-
url: https://github.com/alancolant/flysystem-supabase-adapter/discussions/new?category=ideas
7+
url: https://github.com/quix-labs/laravel-supabase-flysystem/discussions/new?category=ideas
88
about: Share ideas for new features
99
- name: Report a security issue
10-
url: https://github.com/alancolant/flysystem-supabase-adapter/security/policy
10+
url: https://github.com/quix-labs/laravel-supabase-flysystem/security/policy
1111
about: Learn how to notify us for sensitive bugs

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,4 @@ All notable changes to `flysystem-supabase-adapter` will be documented in this f
44

55
## 1.0.0 - 2023-12-21
66

7-
**Full Changelog**: https://github.com/alancolant/flysystem-supabase-adapter/compare/0.1...1.0.0
7+
**Full Changelog**: https://github.com/quix-labs/laravel-supabase-flysystem/compare/0.1...1.0.0

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
# Laravel Supabase Storage Adapter
22

3-
[![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)
4-
[![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)
5-
[![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)
6-
[![Total Downloads](https://img.shields.io/packagist/dt/alancolant/flysystem-supabase-adapter.svg?style=flat-square)](https://packagist.org/packages/alancolant/flysystem-supabase-adapter)
3+
[![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)
4+
[![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)
5+
[![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)
6+
[![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)
77

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

2222
To install the package, use Composer:
2323
```bash
24-
composer require alancolant/flysystem-supabase-adapter
24+
composer require quix-labs/laravel-supabase-flysystem
2525
```
2626

2727
#### Configuration

composer.json

Lines changed: 10 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,12 @@
11
{
2-
"name": "alancolant/flysystem-supabase-adapter",
2+
"name": "quix-labs/laravel-supabase-flysystem",
33
"description": "This package allow you to use Supabase Storage in Laravel",
44
"keywords": [
5-
"alancolant",
6-
"flysystem-supabase-adapter",
5+
"flysystem",
76
"supabase",
87
"laravel"
98
],
10-
"homepage": "https://github.com/alancolant/flysystem-supabase-adapter",
9+
"homepage": "https://github.com/quix-labs/laravel-supabase-flysystem",
1110
"license": "MIT",
1211
"authors": [
1312
{
@@ -20,10 +19,10 @@
2019
"php": "^8.1",
2120
"ext-fileinfo": "*",
2221
"guzzlehttp/guzzle": "^7.2",
23-
"illuminate/contracts": "^10.0",
24-
"illuminate/filesystem": "^10.0",
25-
"illuminate/http": "^10.0",
26-
"illuminate/support": "^10.0",
22+
"illuminate/contracts": "^10.0|^11.0",
23+
"illuminate/filesystem": "^10.0|^11.0",
24+
"illuminate/http": "^10.0|^11.0",
25+
"illuminate/support": "^10.0|^11.0",
2726
"league/flysystem": "^3.0"
2827
},
2928
"require-dev": {
@@ -40,12 +39,12 @@
4039
},
4140
"autoload": {
4241
"psr-4": {
43-
"Alancolant\\FlysystemSupabaseAdapter\\": "src/"
42+
"QuixLabs\\LaravelSupabaseFlysystem\\": "src/"
4443
}
4544
},
4645
"autoload-dev": {
4746
"psr-4": {
48-
"Alancolant\\FlysystemSupabaseAdapter\\Tests\\": "tests/",
47+
"QuixLabs\\LaravelSupabaseFlysystem\\Tests\\": "tests/",
4948
"Workbench\\App\\": "workbench/app/"
5049
}
5150
},
@@ -77,7 +76,7 @@
7776
"extra": {
7877
"laravel": {
7978
"providers": [
80-
"Alancolant\\FlysystemSupabaseAdapter\\ServiceProvider"
79+
"QuixLabs\\LaravelSupabaseFlysystem\\ServiceProvider"
8180
]
8281
}
8382
},

phpunit.xml.dist

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
backupStaticProperties="false"
1717
>
1818
<testsuites>
19-
<testsuite name="Alancolant Test Suite">
19+
<testsuite name="QuixLabsSupabaseFlysystemAdapter Test Suite">
2020
<directory>tests</directory>
2121
</testsuite>
2222
</testsuites>

src/ServiceProvider.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php
22

3-
namespace Alancolant\FlysystemSupabaseAdapter;
3+
namespace QuixLabs\LaravelSupabaseFlysystem;
44

55
use Illuminate\Contracts\Foundation\Application;
66
use Illuminate\Filesystem\FilesystemAdapter;

src/SupabaseAdapter.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php
22

3-
namespace Alancolant\FlysystemSupabaseAdapter;
3+
namespace QuixLabs\LaravelSupabaseFlysystem;
44

55
use GuzzleHttp\Psr7\Utils;
66
use Illuminate\Http\Client\PendingRequest;

tests/Pest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<?php
22

3-
use Alancolant\FlysystemSupabaseAdapter\Tests\TestCase;
3+
use QuixLabs\LaravelSupabaseFlysystem\Tests\TestCase;
44

55
uses(TestCase::class)->in(__DIR__);

tests/TestCase.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
<?php
22

3-
namespace Alancolant\FlysystemSupabaseAdapter\Tests;
3+
namespace QuixLabs\LaravelSupabaseFlysystem\Tests;
44

5-
use Alancolant\FlysystemSupabaseAdapter\ServiceProvider;
5+
use QuixLabs\LaravelSupabaseFlysystem\ServiceProvider;
66
use Orchestra\Testbench\TestCase as Orchestra;
77

88
class TestCase extends Orchestra

0 commit comments

Comments
 (0)