Skip to content

Fix broken headings in Markdown files #98

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Aug 1, 2017
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
12 changes: 6 additions & 6 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
@@ -1,37 +1,37 @@
#A quick guide to contribute to the project:
# A quick guide to contribute to the project:

##Installing the dev environment
## Installing the dev environment

1. Fork the repo
2. Clone the repo to local
3. Install dependencies: `composer update` (this assumes you have 'composer' aliased to whereever your composer.phar lives)
4. Run the tests. We only take pull requests with passing tests, and it's great to know that you have a clean slate:
`./bin/phpunit`

##Coding Standards
## Coding Standards

Try use similar coding standards to what you see in the project to keep things clear to the contributors. If you're unsure, it's always a safe bet to fall-back to the PSR standards.

[PSR-1: Basic Coding Standard](http://www.php-fig.org/psr/psr-1/)

[PSR-2: Coding Style Guide](http://www.php-fig.org/psr/psr-2/)

##Adding new features
## Adding new features

Pull requests with new features needs to be created against master branch.

If new feature require BC Breake please note that in your PR comment, it will added in next major version.
New features that does not have any BC Breakes are going to be added in next minor version.

##Patches and bugfixes
## Patches and bugfixes

1. Check the oldest version that patch/bug fix can be applied.
2. Create PR against that version

For example if you are fixing pattern expander that was introduced in version 1.1 make sure that PR with fix
is created against version 1.1, not master or 2.0

##The actual contribution
## The actual contribution

1. Make the changes/additions to the code, committing often and making clear what you've done
2. Make sure you write tests for your code, located in the folder structure `tests/Coduo/PHPMatcher/...`
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#PHP Matcher
# PHP Matcher

***PHP Matcher*** lets You assert like a gangster in Your test cases, where response can be something you cannot predict

Expand All @@ -15,7 +15,7 @@
[Readme for 1.0 version](https://github.com/coduo/php-matcher/tree/1.0/README.md)


##Installation
## Installation

Require new dev dependency using composer (assuming it's installed globally):

Expand Down Expand Up @@ -84,7 +84,7 @@ $matcher->getError(); // returns null or error message
* ``oneOf(...$expanders)`` - example usage ``"@[email protected](contains('foo'), contains('bar'), contains('baz'))"``
* ``matchRegex($regex)`` - example usage ``"@[email protected]('/^lorem.+/')"``

##Example usage
## Example usage

### Scalar matching

Expand Down