We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 7af82b9 + e816814 commit a9b0d68Copy full SHA for a9b0d68
3 files changed
CHANGELOG.md
@@ -1,5 +1,11 @@
1
# Changelog
2
3
+## 5.1.0 - 2024-07-14
4
+
5
+### Changed
6
7
+- Requires `formal/access-layer:~3.0`
8
9
## 5.0.0 - 2024-03-10
10
11
### Added
composer.json
@@ -26,7 +26,7 @@
26
"innmind/signals": "~3.0",
27
"innmind/file-watch": "~4.0",
28
"innmind/stream": "~4.0",
29
- "formal/access-layer": "^2.0",
+ "formal/access-layer": "~3.0",
30
"innmind/io": "~2.7"
31
},
32
"autoload": {
src/Remote/Generic.php
@@ -99,6 +99,6 @@ public function http(): HttpTransport
99
100
public function sql(Url $server): Connection
101
{
102
- return new Connection\Lazy(static fn() => Connection\PDO::of($server));
+ return Connection\Lazy::of(static fn() => Connection\PDO::of($server));
103
}
104
0 commit comments