From 95fe944f94a98d1de7b9e12b40b545a827006386 Mon Sep 17 00:00:00 2001 From: Thomas Klein Date: Sun, 10 Nov 2024 09:19:22 +0100 Subject: [PATCH] Fix composer.json --- composer.json | 108 +++++++++++++++++++++++++++++++------------------- 1 file changed, 68 insertions(+), 40 deletions(-) diff --git a/composer.json b/composer.json index 1d095d3..21de684 100644 --- a/composer.json +++ b/composer.json @@ -1,45 +1,73 @@ { - "name": "opengento/magento2-better-bo", - "description": "Magento 2 module BetterBo by Opengento.", - "type": "magento2-module", - "version": "1.0.0", - "authors": [ - { - "name": "Alexandre BULETÉ", - "email": "bulete.alexandre@gmail.com" - }, - { - "name": "Frédéric MARTINEZ", - "email": "frederic.martinez@ph2m.com" - }, - { - "name": "Quentin MENDEL", - "email": "q.mendel@boeki.fr" - }, - { - "name": "Romain TESSON", - "email": "rtesson@bird.eu" + "name": "opengento/magento2-better-bo", + "description": "Magento 2 module BetterBo by Opengento.", + "keywords": [ + "php", + "magento", + "magento2", + "admin", + "ui", + "toolbar" + ], + "require": { + "magento/framework": "*", + "magento/module-backend": "*", + "magento/module-config": "*", + "magento/module-user": "*", + "magento/module-store": "*" }, - { - "name": "Sébastien GUÉRIN", - "email": "sebastien@bird.eu" + "require-dev": { + "magento/magento-coding-standard": "^5", + "magento/marketplace-eqp": "^4.0", + "roave/security-advisories": "dev-master" }, - { - "name": "Thomas MOUTLEN", - "email": "thomas.moutlen@ph2m.com" - } - ], - "require": { - "php": "8.x" - }, - "minimum-stability": "stable", - "prefer-stable": false, - "autoload": { - "files": [ - "registration.php" + "type": "magento2-module", + "license": [ + "MIT" + ], + "homepage": "https://github.com/opengento/magento2-better-bo", + "authors": [ + { + "name": "Opengento Team", + "email": "opengento@gmail.com", + "homepage": "https://opengento.fr/", + "role": "lead" + }, + { + "name": "Alexandre BULETÉ", + "email": "bulete.alexandre@gmail.com" + }, + { + "name": "Frédéric MARTINEZ", + "email": "frederic.martinez@ph2m.com" + }, + { + "name": "Quentin MENDEL", + "email": "q.mendel@boeki.fr" + }, + { + "name": "Romain TESSON", + "email": "rtesson@bird.eu" + }, + { + "name": "Sébastien GUÉRIN", + "email": "sebastien@bird.eu" + }, + { + "name": "Thomas MOUTLEN", + "email": "thomas.moutlen@ph2m.com" + } ], - "psr-4": { - "Opengento\\BetterBo\\": "" + "support": { + "source": "https://github.com/opengento/magento2-better-bo", + "issues": "https://github.com/opengento/magento2-better-bo/issues" + }, + "autoload": { + "files": [ + "registration.php" + ], + "psr-4": { + "Opengento\\BetterBo\\": "" + } } - } -} \ No newline at end of file +}