Releases: Nyholm/dsn
Releases · Nyholm/dsn
Release 2.0.1
See change log for changes
Release 2.0.0
Version 2 comes with a new definition was a DSN really is. It supports functions and a greater variety of DSN formats.
Changed
The Nyholm\Dsn
class has been replaced with Nyholm\Dsn\DsnParser
. To get a Dsn
object:
// Before
$dsn = new \Nyholm\DSN('mysql://localhost');
// After
$dsn = \Nyholm\Dsn\DsnParser::parse('mysql://localhost');
See change log for more changes
Release 2.0.0 Beta 2
See change log for changes
Release 2.0.0 Beta 1
See change log for changes
Release 1.0.1
Make sure we decode username and password
Release 1.0.0
First stable release.
Release 0.1.1
Support for PHP 7.3
First release
Merge pull request #3 from Nyholm/readme Added readme and more tests