{"id":26997710,"url":"https://github.com/markenzoo/contao-file-helper-bundle","last_synced_at":"2025-04-04T02:19:25.139Z","repository":{"id":38198135,"uuid":"243822937","full_name":"markenzoo/contao-file-helper-bundle","owner":"markenzoo","description":"🚀 File Helpers for Contao CMS","archived":false,"fork":false,"pushed_at":"2022-12-04T08:26:42.000Z","size":94,"stargazers_count":6,"open_issues_count":5,"forks_count":2,"subscribers_count":4,"default_branch":"master","last_synced_at":"2025-03-05T03:11:19.591Z","etag":null,"topics":["contao-cms","filesystem","helper"],"latest_commit_sha":null,"homepage":null,"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/markenzoo.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":".github/CONTRIBUTING.md","funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2020-02-28T17:54:27.000Z","updated_at":"2025-02-25T06:22:23.000Z","dependencies_parsed_at":"2023-01-24T03:01:34.899Z","dependency_job_id":null,"html_url":"https://github.com/markenzoo/contao-file-helper-bundle","commit_stats":null,"previous_names":[],"tags_count":13,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/markenzoo%2Fcontao-file-helper-bundle","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/markenzoo%2Fcontao-file-helper-bundle/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/markenzoo%2Fcontao-file-helper-bundle/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/markenzoo%2Fcontao-file-helper-bundle/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/markenzoo","download_url":"https://codeload.github.com/markenzoo/contao-file-helper-bundle/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":247107926,"owners_count":20884813,"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":["contao-cms","filesystem","helper"],"created_at":"2025-04-04T02:19:24.263Z","updated_at":"2025-04-04T02:19:25.130Z","avatar_url":"https://github.com/markenzoo.png","language":"PHP","funding_links":[],"categories":[],"sub_categories":[],"readme":"Contao File Helper Bundle\n===============================\n\n\n[![Version](http://img.shields.io/packagist/v/markenzoo/contao-file-helper-bundle.svg?style=for-the-badge\u0026label=Latest)](http://packagist.org/packages/markenzoo/contao-file-helper-bundle)\n[![Version](http://img.shields.io/packagist/php-v/markenzoo/contao-file-helper-bundle.svg?style=for-the-badge\u0026label=PHP)](http://packagist.org/packages/markenzoo/contao-file-helper-bundle)\n[![GitHub issues](https://img.shields.io/github/issues/markenzoo/contao-file-helper-bundle?style=for-the-badge\u0026logo=github)](https://github.com/markenzoo/contao-file-helper-bundle/issues)\n[![License](http://img.shields.io/packagist/l/markenzoo/contao-file-helper-bundle?style=for-the-badge\u0026label=License)](http://packagist.org/packages/markenzoo/contao-file-helper-bundle)\n[![Downloads](http://img.shields.io/packagist/dt/markenzoo/contao-file-helper-bundle?style=for-the-badge\u0026label=Downloads)](http://packagist.org/packages/markenzoo/contao-file-helper-bundle)\n\nThis extension provides useful file helpers for Contao CMS.\n\n\u003cp align=\"left\"\u003e\n  \u003ca href=\"https://github.com/markenzoo/contao-file-helper-bundle/\"\u003e\n    \u003cimg alt=\"markenzoo/contao-file-helper-bundle auf Github\" src=\"https://raw.githubusercontent.com/markenzoo/contao-file-helper-bundle/master/assets/contao-file-helper-icon.png\" width=\"200\"\u003e\n  \u003c/a\u003e\n\u003c/p\u003e\n\nFeatures\n--------\n\n - See where file are being included\n - Edit related modules/elements with one click\n - Manage your files in the contao backend\n - View file meta information\n\nRequirements\n------------\n\n - PHP ^7.2 || ^8.0\n - Contao ^4.9\n\n\nInstall\n-------\n\n### Managed edition\n\nWhen using the managed edition it's pretty simple to install the package. Just search for the package in the\nContao Manager and install it. Alternatively you can use the CLI.\n\n```bash\n# Using the contao manager\n$ php contao-manager.phar.php composer require markenzoo/contao-file-helper-bundle\n\n# Using composer directly\n$ php composer.phar require markenzoo/contao-file-helper-bundle\n\n# Using global composer installation\n$ composer require markenzoo/contao-file-helper-bundle\n```\n\n### Symfony application\n\nIf you use Contao in a symfony application without contao/manager-bundle, you have to register the bundle manually:\n\n```php\n\nclass AppKernel\n{\n    public function registerBundles()\n    {\n        $bundles = [\n            // ...\n            new Markenzoo\\ContaoFileHelperBundle\\ContaoFileHelperBundle()\n        ];\n    }\n}\n\n```\n\n## Note to self\n\nRun the PHP-CS-Fixer and the unit test before you release your bundle:\n\n```bash\ncomposer run-script fix -v\ncomposer run-script lint\ncomposer run-script test\n```\n\n### github.com ci\n\n```bash\nvendor/bin/ecs check src tests --config ecs.php --no-progress-bar\nvendor/bin/phpstan analyse --no-progress\nvendor/bin/phpunit --colors=always\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmarkenzoo%2Fcontao-file-helper-bundle","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmarkenzoo%2Fcontao-file-helper-bundle","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmarkenzoo%2Fcontao-file-helper-bundle/lists"}