kzykhys/composer-project-skeleton

There is no license information available for the latest version (v1.1.0) of this package.

Project Skeleton (Please update this file!)

v1.1.0 2014-01-29 04:33 UTC

This package is not auto-updated.

Last update: 2024-03-11 23:17:38 UTC


README

Latest Stable Version

Usage

1) Create a project

composer create-project -s stable kzykhys/composer-project-skeleton PROJECT_DIR
cd PROJECT_DIR

2) Update composer.json

Please update name, description, require...

{
    "name": "",
    "description": "",
    "minimum-stability": "stable",
    "require": {
        "php": ">=5.3.2"
    },
    "autoload": {
        "psr-0": {
            "": "src"
        }
    }
}

3) Update README.md (This file)

Write your project's readme.

4) Remove .gitkeep (optional)

rm src/.gitkeep test/.gitkeep

5) Init a git repository

git init .
git commit -a -m 'Initial commit'

6) Push your commits to Github

git remote add origin git@github.com:username/repository.git
git push -u origin master

7) Travis CI and Coveralls

Activate your repo on Travis CI and Coveralls.

8) Packagist

Register your repo on Packagist. You can generate a badge on Badge Poser.

9) Service Hooks

Don't forget to activate service hooks.