{"id":25564685,"url":"https://github.com/asdoria/syliusbulkeditplugin","last_synced_at":"2025-04-12T10:09:52.226Z","repository":{"id":196479275,"uuid":"695019875","full_name":"asdoria/SyliusBulkEditPlugin","owner":"asdoria","description":"bulk edit for sylius with asynchrone process","archived":false,"fork":false,"pushed_at":"2024-02-01T10:41:06.000Z","size":1697,"stargazers_count":7,"open_issues_count":2,"forks_count":5,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-04-12T10:09:40.052Z","etag":null,"topics":["bulk-operation","ecommerce","php","sylius","sylius-plugin"],"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/asdoria.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":".github/CODEOWNERS","security":null,"support":null,"governance":null}},"created_at":"2023-09-22T07:20:36.000Z","updated_at":"2024-05-31T19:12:31.000Z","dependencies_parsed_at":"2023-10-04T00:55:23.493Z","dependency_job_id":"a892cab5-6373-479d-abbf-5d86a52fed6e","html_url":"https://github.com/asdoria/SyliusBulkEditPlugin","commit_stats":null,"previous_names":["asdoria/asdoriasyliusbulkeditplugin","asdoria/syliusbulkeditplugin"],"tags_count":6,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/asdoria%2FSyliusBulkEditPlugin","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/asdoria%2FSyliusBulkEditPlugin/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/asdoria%2FSyliusBulkEditPlugin/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/asdoria%2FSyliusBulkEditPlugin/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/asdoria","download_url":"https://codeload.github.com/asdoria/SyliusBulkEditPlugin/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248550634,"owners_count":21122933,"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":["bulk-operation","ecommerce","php","sylius","sylius-plugin"],"created_at":"2025-02-20T21:59:27.403Z","updated_at":"2025-04-12T10:09:52.189Z","avatar_url":"https://github.com/asdoria.png","language":"PHP","funding_links":[],"categories":[],"sub_categories":[],"readme":"\n![Logo Asdoria](doc/asdoria.jpg)\n\n\u003ch1 align=\"center\"\u003eAsdoria BulkEdit Plugin\u003c/h1\u003e\n\n\u003cp align=\"center\"\u003eSimple bulk edit your Sylius shop resources\u003c/p\u003e\n\n\u003cdiv style=\"max-width: 75%; height: auto; margin: auto\"\u003e\n\n![Bulk edit](doc/bulk-edit-plugin.png)\n\n\u003c/div\u003e\n\n\n\n## Installation\n\n---\n1. Run `composer require asdoria/sylius-bulk-edit-plugin`\n\n\n2. Register the bundle in `config/bundles.php`.\n\n```PHP\nAsdoria\\SyliusBulkEditPlugin\\AsdoriaSyliusBulkEditPlugin::class =\u003e ['all' =\u003e true],\n```\n\n3. Import routes in `config/routes.yaml`\n\n```yaml\nasdoria_bulk_edit:\n    resource: \"@AsdoriaSyliusBulkEditPlugin/config/routing.yaml\"\n```\n\n4. Import config in `config/packages/_sylius.yaml`\n```yaml\nimports:\n    - { resource: \"@AsdoriaSyliusBulkEditPlugin/config/config.yaml\"}\n```\n\n5. Run the messenger consumer\n```bash\nphp bin/console messenger:consume asdoria_bulk_edit\n```\n\n## Features\n\n#### Product Variant: \n- DEMO: https://demo-sylius.asdoria.fr/admin/bulk-edit/product-variants\n- Shipping Categories:\n    - Edit shipping category\n    - Enable / disable shipping requirement\n- Tax Categories:\n    - Edit Tax Category \n- Product Variants:\n    - Enable / disable variant\n    - Enable / disable tracked\n    - Edit options (width, height, depth, weight)\n\n#### Product:\n- DEMO: https://demo-sylius.asdoria.fr/admin/bulk-edit/products\n- Associations:\n    - Add association type\n    - Delete association type\n- Attributes:\n    - Add / edit attribute value \n    - Delete attribute value \n- Products:\n    - Enable / disable product\n- Taxons:\n    - Add product taxon\n    - Delete product taxon\n    - Edit main taxon\n\n#### Taxon:\n- DEMO: https://demo-sylius.asdoria.fr/admin/bulk-edit/taxons\n- Taxons:\n    - Enable / disable taxon\n    - Edit parent taxon\n\n#### Customer:\n- DEMO: https://demo-sylius.asdoria.fr/admin/bulk-edit/customers\n- Customers:\n    - Add / edit group\n- Shop Users:\n    - Enable / disable shop user\n\n## Demo\n\nYou can try the BulkEdit plugin online by following this link: [here!](https://demo-sylius.asdoria.fr/admin/bulk-edit/products).\n\nNote that we have developed several other open source plugins for Sylius, whose demos and documentation are listed on the [following page](https://asdoria.github.io/).\n\n## Usage\n\n1. Go to /admin/bulk-edit/products\n\n\n## Enable/Disable infinite scroll\nUse env variable `ASDORIA_BULK_EDIT_INFINITE_SCROLL`\n\nEnable :\n```yaml\nASDORIA_BULK_EDIT_INFINITE_SCROLL=1\n```\n\nDisable :\n```yaml\nASDORIA_BULK_EDIT_INFINITE_SCROLL=0\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fasdoria%2Fsyliusbulkeditplugin","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fasdoria%2Fsyliusbulkeditplugin","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fasdoria%2Fsyliusbulkeditplugin/lists"}