test first skel
1.0.0
psr-4 자동 로드 및 phpunit/코드 적용 범위가 사전 구성된 간단한 스켈
$ composer create-project -sdev proclnas/test-first-skel project-name
따라서 project-name
폴더에 다음 구조가 생성됩니다.
- project-name
- src
| ---- Your default namespace, which was generated dinamically with name: ProjectName
- CHANGELOG.md
| ---- Changelog to keep your updates and new features
- composer.json
| ---- A generic composer file with some basic configuration and namespace already configurated
- phpunit.xml
| ---- Phpunit configuration file, code coverage included
- phpcs.xml
| ---- Coding standard configuration, default: PSR-2 standards
- README.md
| ---- Some presentation about your new project :)
$ composer run-script test
$ composer run-script check
$ composer run-script fix
MIT License
Copyright (c) 2019 Rodrigo Nas
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.