diff --git a/.github/ISSUE_TEMPLATE/config.yml b/.github/ISSUE_TEMPLATE/config.yml index b8e1920..748964c 100644 --- a/.github/ISSUE_TEMPLATE/config.yml +++ b/.github/ISSUE_TEMPLATE/config.yml @@ -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 diff --git a/CHANGELOG.md b/CHANGELOG.md index 279ea3c..86f0fff 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 diff --git a/README.md b/README.md index 29f0e3d..d0821a0 100644 --- a/README.md +++ b/README.md @@ -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. @@ -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 diff --git a/composer.json b/composer.json index 25c6bfb..f6cd5ea 100644 --- a/composer.json +++ b/composer.json @@ -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": [ { @@ -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": { @@ -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/" } }, @@ -77,7 +76,7 @@ "extra": { "laravel": { "providers": [ - "Alancolant\\FlysystemSupabaseAdapter\\ServiceProvider" + "QuixLabs\\LaravelSupabaseFlysystem\\ServiceProvider" ] } }, diff --git a/phpunit.xml.dist b/phpunit.xml.dist index d1cc3b0..29ce20c 100644 --- a/phpunit.xml.dist +++ b/phpunit.xml.dist @@ -16,7 +16,7 @@ backupStaticProperties="false" > - + tests diff --git a/src/ServiceProvider.php b/src/ServiceProvider.php index 6006f4a..aa30ba5 100644 --- a/src/ServiceProvider.php +++ b/src/ServiceProvider.php @@ -1,6 +1,6 @@ in(__DIR__); diff --git a/tests/TestCase.php b/tests/TestCase.php index 1894c5d..477e27c 100644 --- a/tests/TestCase.php +++ b/tests/TestCase.php @@ -1,8 +1,8 @@