Skip to content

Commit 692da23

Browse files
committed
Fix up dependencies
1 parent aa86232 commit 692da23

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

composer.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
},
3232
"require": {
3333
"php": ">=8.1",
34-
"cakephp/cakephp": "5.x-dev",
34+
"cakephp/cakephp": "^5.0.0",
3535
"dereuromark/cakephp-ide-helper": "dev-cake5"
3636
},
3737
"require-dev": {
@@ -52,6 +52,7 @@
5252
}
5353
},
5454
"prefer-stable": true,
55+
"minimum-stability": "dev",
5556
"scripts": {
5657
"test": "vendor/bin/phpunit",
5758
"test-coverage": "vendor/bin/phpunit --log-junit tmp/coverage/unitreport.xml --coverage-html tmp/coverage --coverage-clover tmp/coverage/coverage.xml",
@@ -71,6 +72,5 @@
7172
"allow-plugins": {
7273
"dealerdirect/phpcodesniffer-composer-installer": true
7374
}
74-
},
75-
"minimum-stability": "dev"
75+
}
7676
}

phpunit.xml.dist

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<?xml version="1.0" encoding="UTF-8"?>
2-
<phpunit bootstrap="tests/bootstrap.php" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.3/phpunit.xsd">
2+
<phpunit bootstrap="tests/bootstrap.php" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/10.2/phpunit.xsd">
33
<php>
44
<ini name="memory_limit" value="-1"/>
55
<ini name="apc.enable_cli" value="1"/>
@@ -16,7 +16,7 @@
1616
</testsuites>
1717

1818
<extensions>
19-
<bootstrap class="\Cake\TestSuite\Fixture\Extension\PHPUnitExtension"/>
19+
<bootstrap class="Cake\TestSuite\Fixture\Extension\PHPUnitExtension"/>
2020
</extensions>
2121

2222
<!-- Prevent coverage reports from looking in tests and vendors -->

0 commit comments

Comments
 (0)