Skip to content

Releases: Nyholm/dsn

Release 2.0.1

18 Nov 09:24
9445621
Compare
Choose a tag to compare

Release 2.0.0

16 Oct 13:44
b3a5408
Compare
Choose a tag to compare

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:https://localhost');

// After
$dsn = \Nyholm\Dsn\DsnParser::parse('mysql:https://localhost');

See change log for more changes

Release 2.0.0 Beta 2

11 Oct 12:38
1d75b45
Compare
Choose a tag to compare
Release 2.0.0 Beta 2 Pre-release
Pre-release

See change log for changes

Release 2.0.0 Beta 1

03 Oct 12:48
3268de8
Compare
Choose a tag to compare
Release 2.0.0 Beta 1 Pre-release
Pre-release

See change log for changes

Release 1.0.1

15 Oct 10:49
1b37b7b
Compare
Choose a tag to compare

Make sure we decode username and password

Release 1.0.0

11 Dec 22:08
Compare
Choose a tag to compare

First stable release.

Release 0.1.1

11 Dec 22:06
49ad650
Compare
Choose a tag to compare

Support for PHP 7.3

First release

03 Mar 10:38
7b70096
Compare
Choose a tag to compare
Merge pull request #3 from Nyholm/readme

Added readme and more tests