Note: Replace :package_name
:package_description
with their
correct values in README.md, CHANGELOG.md, CONTRIBUTING.md, LICENSE.md and
composer.json files, then delete this line.
This is where your description should go. Try and limit it to a paragraph or two, and maybe throw in a mention of what PSRs you support to avoid any confusion with users and contributors.
Inspired by phpleague/skeleton, peterkokot/php-skeleton and koriym/PHP.Skeleton.
Via Composer, update your composer.json to use martiadrogue/:package_name
"repositories": [
{
"type": "git",
"url": "https://github.com/martiadrogue/:package_name.git"
}
],
Then you must add martiadrogue/:package_name in require.
"require": {
"martiadrogue/:package_name": "dev-devel"
},
Or invoke
composer require martiadrogue/:package_name:@dev
Old school, forget all and grab files from this directory
$skeleton = new MartiAdrogue\Skeleton();
echo $skeleton->echoPhrase('Hello, world!');
Please see CHANGELOG for more information what has changed recently.
composer test
run phpcs, phpmd and phpunit. Run phpunit for unit test only.
composer test
composer format
run php-cs-fixer and phpcbf to fix up the PHP code to follow
the coding standards.
composer format
Please see CONTRIBUTING and CONDUCT for details.
If you discover any security related issues, please email [email protected] instead of using the issue tracker.
The MIT License (MIT). Please see License File for more information.