Skip to content

Commit d62b954

Browse files
authored
Merge pull request #27 from jguittard/fix/composer-deps
fix: composer dependency for phpdb Merging with outdated baseline. Will reset baseline in my next commit.
2 parents 841091c + 425f438 commit d62b954

File tree

3 files changed

+37
-34
lines changed

3 files changed

+37
-34
lines changed

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
},
3434
"require": {
3535
"php": "~8.1.0 || ~8.2.0 || ~8.3.0 || ~8.4.0",
36-
"php-db/phpdb": "dev-x.x.2"
36+
"php-db/phpdb": "^0.1.0"
3737
},
3838
"require-dev": {
3939
"ext-mysqli": "*",

composer.lock

Lines changed: 30 additions & 33 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

test/integration/FixtureLoader/FixtureLoader.php

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,13 @@
77
// phpcs:ignore WebimpressCodingStandard.NamingConventions.Interface.Suffix
88
interface FixtureLoader
99
{
10+
/**
11+
* @return void
12+
*/
1013
public function createDatabase();
1114

15+
/**
16+
* @return void
17+
*/
1218
public function dropDatabase();
1319
}

0 commit comments

Comments
 (0)