Pour tout problème contactez-nous par mail : support@froggit.fr | La FAQ :grey_question: | Rejoignez-nous sur le Chat :speech_balloon:

Skip to content
Snippets Groups Projects
Commit e74520be authored by Nicolas's avatar Nicolas
Browse files

Initial Commit

parents
No related branches found
Tags 1.0.0
No related merge requests found
Pipeline #494 failed
# Created by https://www.gitignore.io/api/macos
### macOS ###
# General
.DS_Store
.AppleDouble
.LSOverride
# Icon must end with two \r
Icon
# Thumbnails
._*
# Files that might appear in the root of a volume
.DocumentRevisions-V100
.fseventsd
.Spotlight-V100
.TemporaryItems
.Trashes
.VolumeIcon.icns
.com.apple.timemachine.donotpresent
# Directories potentially created on remote AFP share
.AppleDB
.AppleDesktop
Network Trash Folder
Temporary Items
.apdisk
# End of https://www.gitignore.io/api/macos
# Changelog
## [1.0.0] - 2020-05-30
### Added
- Développement du module
## Source
https://raw.githubusercontent.com/olivierlacan/keep-a-changelog/master/CHANGELOG.md
# Master
Description du module
## Installation
Lancer dans le terminal la commande suivante pour configurer le chemin du dépot GIT :
`composer config repositories.nicolasbejean-master vcs git@github.com:nicolasbejean/master.git`
Ensuite, procéder à l'installation avec la commande :
`composer require nicolasbejean/master`
{
"name": "nicolasbejean/master",
"description": "Description du module",
"type": "magento2-module",
"version": "1.0.0",
"require": {
"php": "~7.1.3||~7.2.0||~7.3.0",
"magento/framework": "102.0.*"
},
"license": [
"OSL-3.0",
"AFL-3.0"
],
"autoload": {
"psr-4": {
"NicolasBejean\\Master\\": ""
},
"files": [
"registration.php"
]
}
}
<?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_Master" setup_version="1.0.0">
<sequence>
<module name="NicolasBejean_Base"/>
</sequence>
</module>
</config>
<?php
use \Magento\Framework\Component\ComponentRegistrar;
ComponentRegistrar::register(
ComponentRegistrar::MODULE,
'NicolasBejean_Master',
__DIR__
);
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment