Skip to content

Commit 51749c8

Browse files
committed
Use GitHub Actions.
1 parent 1a40239 commit 51749c8

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

42 files changed

+836
-2012
lines changed

.gitignore

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,8 @@
22
/.phpunit.result.cache
33
/bin/
44
/composer.lock
5-
/custom.task.properties
6-
/custom.type.properties
75
/docs/
86
/test/coverage.xml
7+
/test/etc/routines.json
98
/test/report/
109
/vendor/

build.xml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@
2626
<arg value="-x"/>
2727
<arg value="test/unit-test.sh"/>
2828
</exec>
29+
<delete file="test/etc/routines.json" quiet="true"/>
2930
<move file="test/psql/rename" tofile="test/psql/ test_escape ' &quot; @ $ ! ." overwrite="true" haltonerror="false"/>
3031
<exec executable="bin/phpunit" passthru="true" checkreturn="true"/>
3132
<move file="test/psql/ test_escape ' &quot; @ $ ! ." tofile="test/psql/rename" overwrite="true"/>

composer.json

Lines changed: 5 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -16,17 +16,15 @@
1616
"ext-json": "*",
1717
"ext-pdo": "*",
1818
"setbased/exception": "^2.3.0",
19-
"setbased/helper-cast": "^3.0.0",
19+
"setbased/helper-cast": "^3.0.1",
2020
"setbased/helper-code-store-php": "^2.6.0",
2121
"setbased/php-stratum-backend": "^6.0.0",
22-
"setbased/php-stratum-common": "^6.3.1",
23-
"setbased/php-stratum-middle": "^5.11.0"
22+
"setbased/php-stratum-common": "^7.0.0",
23+
"setbased/php-stratum-middle": "^5.12.0"
2424
},
25-
"minimum-stability": "dev",
26-
"prefer-stable": true,
2725
"require-dev": {
28-
"phing/phing": "^3.0.0-RC4",
29-
"phpunit/phpunit": "^9.5.28",
26+
"phing/phing": "^3.0.0",
27+
"phpunit/phpunit": "^10.5.35",
3028
"setbased/php-stratum": "^6.3.1"
3129
},
3230
"autoload": {

src/Backend/SqlitePdoBackend.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,10 +27,10 @@ public function createRoutineLoaderWorker(Config $settings, StratumStyle $io): ?
2727
/**
2828
* @inheritDoc
2929
*/
30-
public function createRoutineWrapperGeneratorWorker(Config $settings,
30+
public function createRoutineWrapperGeneratorWorker(Config $settings,
3131
StratumStyle $io): ?RoutineWrapperGeneratorWorker
3232
{
33-
return new SqlitePdoRoutineWrapperGeneratorPdoWorker($settings, $io);
33+
return new SqlitePdoRoutineWrapperGeneratorWorker($settings, $io);
3434
}
3535

3636
//--------------------------------------------------------------------------------------------------------------------

0 commit comments

Comments
 (0)