Skip to content

Commit c259440

Browse files
authored
Merge pull request #4 from smart-gamma/update-pact-php
Update pact-php to v5
2 parents 9b6fece + fc79923 commit c259440

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

.gitignore

+5-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
.idea/
2-
vendor/
2+
33
build/
44
!build/.gitkeep
5+
6+
vendor/
57
infection.phar.asc
8+
9+
composer.lock

Makefile

+2-3
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,11 @@
11
test: ## Run phpunit tests
22
vendor/bin/phpspec run
33

4-
test-coverage: ## Run phpunit tests
4+
test-coverage: ## Run phpunit tests
55
phpdbg -qrr vendor/bin/phpspec run
66

77
test-mutator:
8-
infection --threads=4 --min-msi=60 --only-covered --log-verbosity=2 --test-framework=phpspec
8+
infection --threads=4 --min-msi=60 --only-covered --log-verbosity=2 --test-framework=phpspec
99

1010
phpstan:
1111
vendor/bin/phpstan analyse -l max src
12-

composer.json

+1-4
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,6 @@
1010
}
1111
],
1212
"repositories": [
13-
{
14-
"type": "vcs",
15-
"url": "git@github.com:smart-gamma/pact-php.git" },
1613
{
1714
"type" : "vcs",
1815
"url" : "https://github.com/samsonasik/phpspec-code-coverage",
@@ -23,7 +20,7 @@
2320
"require": {
2421
"php" : ">=7.0",
2522
"behat/behat": "^3.4",
26-
"pact-foundation/pact-php": "dev-improved-library"
23+
"pact-foundation/pact-php": "^5.0"
2724
},
2825
"autoload": {
2926
"psr-4": {

0 commit comments

Comments
 (0)