{"id":51109289,"url":"https://github.com/mooxphp/connect","last_synced_at":"2026-06-24T16:01:56.904Z","repository":{"id":362817961,"uuid":"944554064","full_name":"mooxphp/connect","owner":"mooxphp","description":"Connect to REST and GraphQL API","archived":false,"fork":false,"pushed_at":"2025-03-07T14:57:07.000Z","size":67,"stargazers_count":4,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2026-06-06T04:29:08.725Z","etag":null,"topics":["api","connect","filament","laravel","manager"],"latest_commit_sha":null,"homepage":"https://www.moox.org","language":"PHP","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/mooxphp.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":".github/FUNDING.yml","license":"LICENSE.md","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":"SECURITY.md","support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null},"funding":{"github":["mooxphp"],"patreon":null,"open_collective":null,"ko_fi":null,"tidelift":null,"community_bridge":null,"liberapay":null,"issuehunt":null,"otechie":null,"lfx_crowdfunding":null,"custom":null}},"created_at":"2025-03-07T14:54:12.000Z","updated_at":"2026-05-20T15:39:25.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/mooxphp/connect","commit_stats":null,"previous_names":["mooxphp/connect"],"tags_count":null,"template":false,"template_full_name":null,"purl":"pkg:github/mooxphp/connect","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mooxphp%2Fconnect","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mooxphp%2Fconnect/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mooxphp%2Fconnect/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mooxphp%2Fconnect/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/mooxphp","download_url":"https://codeload.github.com/mooxphp/connect/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mooxphp%2Fconnect/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":34739426,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-06-24T02:00:07.484Z","response_time":106,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"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":["api","connect","filament","laravel","manager"],"created_at":"2026-06-24T16:01:55.815Z","updated_at":"2026-06-24T16:01:56.899Z","avatar_url":"https://github.com/mooxphp.png","language":"PHP","funding_links":["https://github.com/sponsors/mooxphp"],"categories":[],"sub_categories":[],"readme":"![Moox Connect](https://github.com/mooxphp/moox/raw/main/art/banner/connect-package.jpg)\n\n# Moox Connect\n\nMoox Connect is a Laravel 11+ and Filament 3.2 package that allows managing REST and GraphQL API endpoints, synchronizing data from APIs to a database, and providing Filament-powered UI for administration.\n\nMoox Connect is under heavy development.\n\n## Quick Installation\n\nThese two commmands are all you need to install the package:\n\n```bash\ncomposer require moox/connect\nphp artisan connect:install\n```\n\nCurious what the install command does? See manual installation below.\n\n## Features\n\n-   UI for managing APIs, endpoints and jobs to sync data\n-   Support for REST and GraphQL APIs\n-   Flexible endpoint configuration\n-   Rate limiting with automatic retry\n-   Multiple auth strategies:\n    -   Basic Auth\n    -   Bearer Token\n    -   OAuth 2.0\n    -   JWT\n    -   Multi-Auth with token inheritance\n-   Automatic token refresh\n-   Secure credential storage\n-   Built-in transformers:\n    -   Array/Collection\n    -   DateTime\n    -   JSON\n    -   Number\n-   Custom transformer support\n-   Validation and type safety\n-   Job scheduling and queues\n-   Status monitoring\n-   Comprehensive logging\n-   Error recovery with retry mechanisms\n-   Email notifications for failures\n\n## Configuration\n\n```php\nreturn [\n    'notifications' =\u003e [\n        'email' =\u003e env('MAIL_TO_ADDRESS', config('mail.to.address')),\n    ],\n\n    'rate_limits' =\u003e [\n        'global' =\u003e [\n            'max_requests' =\u003e 1000,  // requests\n            'window' =\u003e 60,          // seconds\n        ],\n\n        'per_endpoint' =\u003e [\n            'default' =\u003e [\n                'max_requests' =\u003e 100,\n                'window' =\u003e 60,\n            ],\n            // Can be overridden per endpoint in endpoint config\n        ],\n\n        'per_job' =\u003e [\n            'default' =\u003e [\n                'max_requests' =\u003e 50,\n                'window' =\u003e 60,\n            ],\n            // Can be overridden in job config\n        ],\n    ],\n];\n```\n\n## Classes and Models\n\nYou can deep dive into the [Class Structure](STRUCTURE.md) and the [Database Models](MODELS.md) of this package, if you want to know more about the inner workings.\n\n## Manual Installation\n\nInstead of using the install-command `php artisan connect:install` you are able to install this package manually step by step:\n\n```bash\n// Publish and run the migrations:\nphp artisan vendor:publish --tag=\"connect-migrations\"\nphp artisan migrate\n\n// Publish the config file with:\nphp artisan vendor:publish --tag=\"connect-config\"\n```\n\n## Changelog\n\nPlease see [CHANGELOG](CHANGELOG.md) for more information on what has changed recently.\n\n## Security Vulnerabilities\n\nPlease review [our security policy](https://github.com/mooxphp/moox/security/policy) on how to report security vulnerabilities.\n\n## Credits\n\n-   [All Contributors](../../contributors)\n\n## License\n\nThe MIT License (MIT). Please see [License File](LICENSE.md) for more information.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmooxphp%2Fconnect","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmooxphp%2Fconnect","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmooxphp%2Fconnect/lists"}