How to start
Clone module template and prepare it for developing
Now you can create a zip archive and install your new module on the MikoPBX server.

You should load the mikopbx/core package and dependent libraries it helps to resolve references between MikoPBX class names.
Linux/Mac
cd ~/PhpstormProjects/ModuleCalbackFromWebsite
composer install
Next, you can create a git repository for a new module and commit all new code.
Linux/Mac
git init
echo "vendor/" > .gitignore
git add .
git commit -m 'initial commit'
If you have a remote git repository you can push your module into it.
Linux/Mac
git remote add origin <url>
git push -u origin master
Last modified 1yr ago