{"id":29289569,"url":"https://github.com/maniaba/asset-connect","last_synced_at":"2026-05-16T21:10:39.176Z","repository":{"id":303040407,"uuid":"1012770071","full_name":"maniaba/asset-connect","owner":"maniaba","description":"AssetConnect is a file management library for CodeIgniter 4 that allows you to associate files with any entity in your application.","archived":false,"fork":false,"pushed_at":"2026-04-28T16:23:31.000Z","size":1213,"stargazers_count":8,"open_issues_count":1,"forks_count":0,"subscribers_count":1,"default_branch":"develop","last_synced_at":"2026-04-28T18:22:20.651Z","etag":null,"topics":["asset-management","codeingiter","codigniter4","file-upload","filemanagement","php83"],"latest_commit_sha":null,"homepage":"https://maniaba.github.io/asset-connect/","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/maniaba.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE.md","code_of_conduct":"CODE_OF_CONDUCT.md","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,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":"AGENTS.md","dco":null,"cla":null}},"created_at":"2025-07-02T21:20:25.000Z","updated_at":"2026-04-28T16:20:46.000Z","dependencies_parsed_at":"2025-07-21T22:16:46.046Z","dependency_job_id":"34dc74ca-0b7e-46f0-b9ed-f43351d5cad4","html_url":"https://github.com/maniaba/asset-connect","commit_stats":null,"previous_names":["maniaba/asset-connect"],"tags_count":3,"template":false,"template_full_name":null,"purl":"pkg:github/maniaba/asset-connect","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/maniaba%2Fasset-connect","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/maniaba%2Fasset-connect/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/maniaba%2Fasset-connect/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/maniaba%2Fasset-connect/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/maniaba","download_url":"https://codeload.github.com/maniaba/asset-connect/tar.gz/refs/heads/develop","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/maniaba%2Fasset-connect/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":33119016,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-16T18:38:32.183Z","status":"ssl_error","status_checked_at":"2026-05-16T18:38:29.903Z","response_time":115,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"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":["asset-management","codeingiter","codigniter4","file-upload","filemanagement","php83"],"created_at":"2025-07-06T05:01:12.586Z","updated_at":"2026-05-16T21:10:39.170Z","avatar_url":"https://github.com/maniaba.png","language":"PHP","funding_links":[],"categories":[],"sub_categories":[],"readme":"# AssetConnect for CodeIgniter 4\n\n[![PHPUnit](https://github.com/maniaba/asset-connect/actions/workflows/phpunit.yml/badge.svg)](https://github.com/maniaba/asset-connect/actions/workflows/phpunit.yml)\n[![PHPStan](https://github.com/maniaba/asset-connect/actions/workflows/phpstan.yml/badge.svg)](https://github.com/maniaba/asset-connect/actions/workflows/phpstan.yml)\n[![Deptrac](https://github.com/maniaba/asset-connect/actions/workflows/deptrac.yml/badge.svg)](https://github.com/maniaba/asset-connect/actions/workflows/deptrac.yml)\n[![Psalm](https://github.com/maniaba/asset-connect/actions/workflows/psalm.yml/badge.svg)](https://github.com/maniaba/asset-connect/actions/workflows/psalm.yml)\n[![Docs](https://github.com/maniaba/asset-connect/actions/workflows/docs.yml/badge.svg)](https://github.com/maniaba/asset-connect/actions/workflows/docs.yml)\n\n![PHP](https://img.shields.io/badge/PHP-%5E8.3-blue)\n[![CodeIgniter](https://img.shields.io/badge/CodeIgniter-4.6+-blue.svg?style=flat-square)](http://codeigniter.com/)\n![License](https://img.shields.io/badge/License-MIT-blue)\n\nAssetConnect is a file management library for CodeIgniter 4 that allows you to associate files with any entity in your application.\nIt provides a robust, flexible solution for handling file uploads, storage, and retrieval with powerful features like collections, custom properties, and secure access control.\n\n## Requirements\n\n- PHP 8.3 or higher\n- CodeIgniter 4.6 or higher\n- CodeIgniter Queue\n\n## Example Usage\n\n```php\n// Add an asset to a user\n$asset = $user-\u003eaddAsset('/path/to/file.jpg')\n    -\u003ewithCustomProperties([\n        'title' =\u003e 'Profile Picture',\n        'description' =\u003e 'User profile picture'\n    ])\n    -\u003etoAssetCollection();\n\n// Get all assets for a user\n$assets = $user-\u003egetAssets();\n\n// Get the URL to an asset\n$url = $user-\u003egetFirstAsset()-\u003egetUrl();\n\n// Delete assets from a specific collection\n$user-\u003edeleteAssets(ImagesCollection::class);\n```\n\n## Documentation\n\nComprehensive documentation is available at [https://maniaba.github.io/asset-connect/](https://maniaba.github.io/asset-connect/).\n\nFind yourself stuck using the package? Found a bug? Do you have general questions or suggestions for improving the media library? Feel free to create an issue on GitHub, we'll try to address it as soon as possible.\n\n## Testing\n\nRun the test suite with:\n\n```bash\ncomposer test\n```\n\nFor more detailed testing options:\n\n```bash\n# Run with code coverage\ncomposer test -- --coverage-html=build/coverage\n\n# Run static analysis\ncomposer analyze\n```\n\n## Changelog\n\nAll notable changes to this project are documented in the [CHANGELOG.md](CHANGELOG.md) file.\n\n## Contributing\n\nContributions are welcome! Please see [CONTRIBUTING.md](CONTRIBUTING.md) for details on how to contribute to this project.\n\n## Security\n\nIf you discover a security vulnerability, please send an email to [maniaba@outlook.com](mailto:maniaba@outlook.com) instead of using the issue tracker. All security vulnerabilities will be promptly addressed.\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%2Fmaniaba%2Fasset-connect","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmaniaba%2Fasset-connect","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmaniaba%2Fasset-connect/lists"}