{"id":23003711,"url":"https://github.com/stechstudio/filament-uppy","last_synced_at":"2025-04-02T14:24:58.374Z","repository":{"id":249844579,"uuid":"832319938","full_name":"stechstudio/filament-uppy","owner":"stechstudio","description":"Uppy-based file uploader Filament form component.","archived":false,"fork":false,"pushed_at":"2025-01-15T22:38:21.000Z","size":46,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":5,"default_branch":"master","last_synced_at":"2025-03-26T05:06:51.341Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/stechstudio.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2024-07-22T19:25:38.000Z","updated_at":"2025-01-13T16:57:13.000Z","dependencies_parsed_at":"2025-02-08T05:37:32.319Z","dependency_job_id":null,"html_url":"https://github.com/stechstudio/filament-uppy","commit_stats":null,"previous_names":["stechstudio/filament-uppy"],"tags_count":9,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/stechstudio%2Ffilament-uppy","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/stechstudio%2Ffilament-uppy/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/stechstudio%2Ffilament-uppy/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/stechstudio%2Ffilament-uppy/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/stechstudio","download_url":"https://codeload.github.com/stechstudio/filament-uppy/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":246829946,"owners_count":20840726,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-12-15T07:15:05.753Z","updated_at":"2025-04-02T14:24:58.349Z","avatar_url":"https://github.com/stechstudio.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Filament Uppy Form Component\nThis package contains a [Filament](https://filamentphp.com/) form component called `UppyUploader` that integrates the\n[Uppy JS uploader](https://uppy.io) with our own [Laravel Uppy Companion](https://github.com/stechstudio/laravel-uppy-companion).\n\n## Installation\nAt this point, using this component still requires\n[configuring the Laravel Uppy Companion](https://github.com/stechstudio/laravel-uppy-companion/blob/master/README.md#service-provider-configuration)\nin your Laravel app with, at the very least, the bucket name and an S3 client.\n\n```php\nuse Aws\\S3\\S3Client;\nuse STS\\LaravelUppyCompanion\\LaravelUppyCompanion;\n\napp(LaravelUppyCompanion::class)-\u003econfigure(\n    'my-bucket-name',\n    new S3Client(config('aws'))\n);\n```\n\nRegister the companion's signing routes:\n```php\nuse STS\\LaravelUppyCompanion\\LaravelUppyCompanion;\n\nRoute::group(['prefix' =\u003e 'my/upload'], function () {\n    LaravelUppyCompanion::routes();\n});\n```\n\nUse in a Filament form schema:\n```php\nuse STS\\FilamentUppy\\UppyUploader;\n\nUppyUploader::make('files')\n    -\u003eendpoints(upload: '/my/upload/sign'),\n```\n\nThe `-\u003eendpoints()` method also accepts optional `success` and `delete` arguments for endpoints that the uploader\nshould hit after a successful upload or when a file is deleted, respectively.\n\n## Styles\nThis component uses tailwind styles that may not exist in your bundled CSS. You can include the styles in your app by\nadding the vendor directory to your `tailwind.config.js` file:\n\n```js\nexport default {\n    content: [\n        './resources/**/*.blade.php',\n        './vendor/filament/**/*.blade.php',\n        './vendor/stechstudio/filament-uppy/resources/views/**/*.blade.php', // Filament Uppy's vendor directory\n    ],\n    // ...\n}\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fstechstudio%2Ffilament-uppy","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fstechstudio%2Ffilament-uppy","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fstechstudio%2Ffilament-uppy/lists"}