Skip to content
This repository was archived by the owner on Oct 30, 2024. It is now read-only.

Commit d4da55d

Browse files
authored
Merge pull request repejota#67 from repejota/bdd-connection-options
Bdd connection options
2 parents 41afe53 + 947ac2f commit d4da55d

5 files changed

Lines changed: 44 additions & 2184 deletions

File tree

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,6 @@ vendor
44
cover
55
*.phar
66
/composer.phar
7+
/composer.lock
78
build
89
.idea

Makefile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,13 +10,13 @@ cs: lint
1010
./bin/phpcs --standard=Squiz --sniffs=Squiz.Commenting.FunctionComment,Squiz.Commenting.FunctionCommentThrowTag,Squiz.Commenting.ClassComment,Squiz.Commenting.VariableComment src tests examples
1111

1212
test:
13-
./bin/phpunit test
13+
./vendor/bin/phpunit test
1414

1515
bdd:
16-
./bin/phpspec run
16+
./vendor/bin/phpspec run --format=pretty
1717

1818
cover:
19-
./bin/phpunit --coverage-html ./cover test
19+
./vendor/bin/phpunit --coverage-html ./cover test
2020
deps:
2121
wget -q https://getcomposer.org/composer.phar -O ./composer.phar
2222
chmod +x composer.phar

composer.json

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,6 @@
1313
"squizlabs/php_codesniffer": "~2.0",
1414
"phpspec/phpspec": "~2.0"
1515
},
16-
"config": {
17-
"bin-dir": "bin"
18-
},
1916
"authors": [
2017
{
2118
"name": "Raül Pérez",

0 commit comments

Comments
 (0)