diff --git a/README.md b/README.md index 99a5c82010123ac092ce32bd005c9dab30ea5079..2bae132e6209aa34348985b71986a1fe4e305b88 100755 --- a/README.md +++ b/README.md @@ -6,14 +6,14 @@ Base de travail pour le développement d'un module Magento 2. Lancer dans le terminal la commande suivante pour configurer le chemin du dépot GIT : -`composer config repositories.nicolasbejean-main git https://lab.frogg.it/bejean-developpement/magento-2/modules/main.git` +`composer config repositories.bejeandeveloppement-main git https://lab.frogg.it/bejean-developpement/magento-2/modules/main.git` Ensuite, procéder à l'installation avec la commande : -`composer require nicolasbejean/module-main` +`composer require bejeandeveloppement/module-main` ## Licence [](https://choosealicense.com/licenses/gpl-3.0/). -**NicolasBejean_Main** est créé par Béjean Développement et publié sous la licence [GPL3](https://www.gnu.org/licenses/gpl.html). +**BejeanDeveloppement_Main** est créé par Béjean Développement et publié sous la licence [GPL3](https://www.gnu.org/licenses/gpl.html). diff --git a/composer.json b/composer.json index cd38420003af82288b8d038c7603a36edd78b9db..49be8092840e4d7ebe5d9c1402e1a61f76cbc3d3 100755 --- a/composer.json +++ b/composer.json @@ -1,5 +1,5 @@ { - "name": "nicolasbejean/module-main", + "name": "bejeandeveloppement/module-main", "description": "Base de travail pour le développement d'un module Magento 2", "type": "magento2-module", "version": "1.2.6", @@ -12,7 +12,7 @@ ], "autoload": { "psr-4": { - "NicolasBejean\\Main\\": "" + "BejeanDeveloppement\\Main\\": "" }, "files": [ "registration.php" diff --git a/etc/module.xml b/etc/module.xml index 4e8489cf803abf8bba60f88954a8c7d9eec37eee..ee7bb8a9bd3af4060f577ed541b6dd8b2a76815b 100755 --- a/etc/module.xml +++ b/etc/module.xml @@ -1,4 +1,4 @@ <?xml version="1.0"?> <config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:framework:Module/etc/module.xsd"> - <module name="NicolasBejean_Main"/> + <module name="BejeanDeveloppement_Main"/> </config> diff --git a/registration.php b/registration.php index 7c2303670b20a09f66760da0768e0f0cc9aa8d5f..64e69dba98659cdde7565f8e420aea7d5836a247 100755 --- a/registration.php +++ b/registration.php @@ -4,6 +4,6 @@ use \Magento\Framework\Component\ComponentRegistrar; ComponentRegistrar::register( ComponentRegistrar::MODULE, - 'NicolasBejean_Main', + 'BejeanDeveloppement_Main', __DIR__ );