Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
# Phenix PHP release notes

All notable changes to this project will be documented in this file.

The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]

### Added
- Tests for the `make:controller` command. ([#6](https://github.com/barbosa89/phenix/pull/6))
8 changes: 7 additions & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@
"amphp/http-server-router": "^v2.0.0-beta.1",
"amphp/log": "^v2.0.0-beta.1",
"league/container": "^4.2",
"nesbot/carbon": "^2.62",
"symfony/console": "^6.1",
"vlucas/phpdotenv": "^5.4"
},
Expand All @@ -39,8 +40,12 @@
"nunomaduro/collision": "^6.3",
"nunomaduro/phpinsights": "^2.6",
"pestphp/pest": "^1.22",
"pestphp/pest-plugin-faker": "^1.0",
"pestphp/pest-plugin-global-assertions": "^1.0",
"pestphp/pest-plugin-mock": "^1.0",
"pestphp/pest-plugin-parallel": "^1.2",
"phpunit/phpunit": "^9.5",
"spatie/pest-plugin-test-time": "^1.1",
"symfony/var-dumper": "^6.1"
},
"config": {
Expand All @@ -56,7 +61,8 @@
"minimum-stability": "dev",
"prefer-stable": true,
"scripts": {
"test": "vendor/bin/pest",
"test": "XDEBUG_MODE=off vendor/bin/pest",
"test:debug": "vendor/bin/pest",
"test:coverage": "XDEBUG_MODE=coverage vendor/bin/pest --coverage",
"test:parallel": "vendor/bin/pest --parallel",
"phpcs": "vendor/bin/php-cs-fixer fix",
Expand Down
Loading