https://github.com/dcorrea777/code-craft
CodeCraft is a boilerplate for PHP projects focused on code quality.
https://github.com/dcorrea777/code-craft
phpcs phpstan phpunit
Last synced: 8 months ago
JSON representation
CodeCraft is a boilerplate for PHP projects focused on code quality.
- Host: GitHub
- URL: https://github.com/dcorrea777/code-craft
- Owner: dcorrea777
- License: mit
- Created: 2024-05-28T19:33:59.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-05-30T12:16:43.000Z (over 1 year ago)
- Last Synced: 2025-02-10T23:51:12.690Z (9 months ago)
- Topics: phpcs, phpstan, phpunit
- Language: PHP
- Homepage:
- Size: 5.86 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# CodeCraft
**CodeCraft** is a boilerplate for PHP projects focused on code quality. This project serves as the basis for new projects, including a pre-installed configuration of several essential tools for keeping code clean, standardized and well-tested.
## Pakages
* [PHP Stan](https://github.com/phpstan/phpstan)
* [PHP Stan Strict Rules](https://github.com/phpstan/phpstan-strict-rules)
* [PHP Stan Deprecation Rules](https://github.com/phpstan/phpstan-deprecation-rules)
* [PHP Stan PHPUnit](https://github.com/phpstan/phpstan-phpunit)
* [PHP Unit](https://github.com/sebastianbergmann/phpunit)
* [PHP CodeSniffer](https://github.com/squizlabs/PHP_CodeSniffer)
* [PHP CodeSniffer Security Audit](https://github.com/FloeDesignTechnologies/phpcs-security-audit)
* [PHP Paraller Lint](https://github.com/php-parallel-lint/PHP-Parallel-Lint)
## How to use
Clone the repository
```sh
git clone https://github.com/dcorrea777/code-craft.git
```
Install dependencies
```sh
composer install
```
Use the tools as needed
```sh
composer phpstan
composer phpcs
composer phplint
composer phpunit
```
## License
This project is licensed under the MIT License. See the LICENSE file for more details.
---
CodeCraft - Keep your PHP code clean, standardized, and well-tested.