Skip to content

Template repository for a phpVMS plugin

Notifications You must be signed in to change notification settings

arthurpar06/phpvms-module

This branch is 1 commit ahead of phpvms/phpvms-module:master.

Folders and files

NameName
Last commit message
Last commit date

Latest commit

39d2688 · Jun 2, 2023

History

5 Commits
Feb 28, 2020
Feb 28, 2020
Feb 28, 2020
Feb 28, 2020
Feb 28, 2020
Feb 28, 2020
Jun 2, 2023
Feb 28, 2020
Feb 28, 2020
Feb 28, 2020
Feb 28, 2020
Feb 28, 2020

Repository files navigation

phpvms-module

Sample/template repository for a phpVMS plugin. See the full docs here: http://docs.phpvms.net/developers/add-ons-and-modules

Generating a new module

The easiest way to generate a new module for phpVMS is to use the artisan command:

php artisan module:make {ModuleName}

That will create a module in the modules folder, which you can then copy out into its own repository and develop.

Composer Configuration

Type

The type field needs to be set to "phpvms-module", and

"type": "phpvms-module",
"require": {}

Autoload

The path to your namespace must be set by the autoload section:

"autoload": {
    "psr-4": {
        "Modules\\Sample\\": "."
    }
}

About

Template repository for a phpVMS plugin

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • PHP 88.3%
  • Blade 11.7%