Skip to content

Commit b001385

Browse files
committed
Document how to develop new features
Closes #65
1 parent c74557f commit b001385

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed

README.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -186,6 +186,22 @@ symfony/phpunit-bridge allows environment variable `SYMFONY_PHPUNIT_VERSION` to
186186

187187
Please submit a PR if you have a solution!
188188

189+
## Development
190+
191+
Follow these steps to add new features or develop your own fork:
192+
193+
```
194+
# Get source code (or replace with your fork URL)
195+
$ git checkout https://github.com/johnkary/phpunit-speedtrap.git phpunit-speedtrap
196+
197+
# Install dev dependencies
198+
$ cd phpunit-speedtrap
199+
$ composer install
200+
201+
# Run test suite to verify code runs as expected
202+
$ vendor/bin/phpunit
203+
```
204+
189205
## Inspiration
190206

191207
SpeedTrap was inspired by [RSpec's](https://github.com/rspec/rspec) `--profile` option that displays feedback about slow tests.

0 commit comments

Comments
 (0)