Download the PHP package modmore/moduleskeleton without Composer
On this page you can find all versions of the php package modmore/moduleskeleton. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Table of contents
Download modmore/moduleskeleton
More information about modmore/moduleskeleton
Files in modmore/moduleskeleton
Download modmore/moduleskeleton
More information about modmore/moduleskeleton
Files in modmore/moduleskeleton
Vendor modmore
Package moduleskeleton
Short Description Skeleton for Commerce module projects.
License MIT
Package moduleskeleton
Short Description Skeleton for Commerce module projects.
License MIT
Please rate this library. Is it a good library?
Informations about the package moduleskeleton
Commerce Module Skeleton
This repository contains a skeleton for a Commerce module project. It is meant to be installed with composer.
`
The skeleton will automatically rename the various bits and pieces with the name of the directory you install it in. This will apply a few transforms.
- For the name of directories, lexicons, etc, the directory name will be lowercased and in some places prefixed with
commerce_
. - For the name of the namespace, module, and other "friendly" places the project name is used, it breaks up the project name by
-
, uppercase the first letter of each part, and stick those together. (E.g. a directory namedfoo-bar
will be turned intoFooBar
)
Included in the skeleton
- A build to create a transport package (
_build
) with settings, the core folder, a requirements validator, and the package information fromdocs
in the component directory. This build also includes proprietary code that enables it to be built by the modmore.com package provider. - A bootstrap (
_bootstrap/index.php
) that can be used to swiftly set up namespaces, settings and other critical parts to get going. - Inside the core/components directory:
- Package information files (in
docs
) with the license (MIT), changelog, and readme. - English lexicon stub with your project name.
- Under
model/schema
, a sample xPDO package schema. If you use this, you'll find a script in/_build/build.schema.php
to turn it into a model and (commented out) code insrc/Modules/Projectname.php
to load the package. - In
src/Modules/Projectname.php
a module, complete with basic methods filled out. - A
composer.json
file defining a PSR-4 autoloader for your namespace and project name. If you change this, runcomposer dump-autoload
in thecore/components/projectname/
directory to update the autoloader.
- Package information files (in
- A basic phpcs ruleset that both checks PHP 7.4-8.2 compatibility and a standard set of coding standards that we use for our projects. This is in both
.github/workflows/phpcs.yml
to run automatically on pushes to GitHub, and incomposer.json
in the root of the project.- To run locally, make sure to do a
composer install
in the root. - Run
composer run phpcs
to check the coding standards and PHP version compatibility - Run
composer run phpcbf
to automatically fix code that doesn't comply with the coding standards, where possible
- To run locally, make sure to do a
Happy building!
All versions of moduleskeleton with dependencies
PHP Build Version
Package Version
Requires
php Version
>=7.4.0
The package modmore/moduleskeleton contains the following files
Loading the files please wait ....