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 11a3bacc authored by Nicolas's avatar Nicolas
Browse files

Initial Commit

parents
No related branches found
No related tags found
No related merge requests found
# 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] - 2019-11-01
### Added
- Développement du module
## Source
https://raw.githubusercontent.com/olivierlacan/keep-a-changelog/master/CHANGELOG.md
# BASE
Gestionnaire de base des modules de Nicolas Béjean.
## Installation
Lancer dans le terminal la commande suivante pour configurer le chemin du dépot GIT :
`composer config repositories.nicolasbejean-base vcs git@github.com:nicolasbejean/base.git`
Ensuite, procéder à l'installation avec la commande :
`composer require nicolasbejean/base`
\ No newline at end of file
{
"name": "nicolasbejean/base",
"description": "Gestionnaire de base des modules de Nicolas Béjean",
"type": "magento2-module",
"version": "1.0.0",
"require": {
"php": ">=7.0.0"
},
"license": [
"OSL-3.0",
"AFL-3.0"
],
"autoload": {
"psr-4": {
"NicolasBejean\\Base\\": ""
},
"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_Base" setup_version="1.0.0" />
</config>
<?php
use \Magento\Framework\Component\ComponentRegistrar;
ComponentRegistrar::register(
ComponentRegistrar::MODULE,
'NicolasBejean_Base',
__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