kzykhys/composer-project-skeleton
Composer 安装命令:
composer require kzykhys/composer-project-skeleton
包简介
Project Skeleton (Please update this file!)
README 文档
README
- PHPUnit (See phpunit.xml.dist)
- Travis CI (See .travis.yml)
- Coveralls
- SensioLabs Security Checker
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.
统计信息
- 总下载量: 80
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 2
- 点击次数: 2
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: Unknown
- 更新时间: 2013-12-11