Skip to content

PHP DSN parser - This library helps to parse DSN\URI strings.

License

Notifications You must be signed in to change notification settings

ixnode/php-dsn-parser

Repository files navigation

PHP DSN Parser

Release PHP PHPStan PHPUnit PHPCS PHPMD Rector - Instant Upgrades and Automated Refactoring LICENSE

This library helps to parse DSN\URI strings.

1. Usage

use Ixnode\PhpDsnParser\DsnParser;
$dsnParser = new DsnParser('smtp://suserweb:S22jD7Po%.,/zu34k@mail.domain.tld:25?verify_peer=0');

print_r($dsnParser->getParsed());
// (array) [
//     'protocol' => 'smtp',
//     'user' => 'suserweb',
//     'password' => 'S22jD7Po%.,/zu34k',
//     'host' => 'mail.domain.tld',
//     'port' => 25,
//     'options' => 'verify_peer=0',
// ]

2. Installation

composer require ixnode/php-dsn-parser
vendor/bin/php-dsn-parser -V
php-dsn-parser 0.1.0 (03-07-2023 01:17:26) - Björn Hempel <bjoern@hempel.li>

3. Library development

git clone git@github.com:ixnode/php-dsn-parser.git && cd php-dsn-parser
composer install
composer test

4. License

This library is licensed under the MIT License - see the LICENSE file for details.

About

PHP DSN parser - This library helps to parse DSN\URI strings.

Resources

License

Stars

Watchers

Forks

Packages

No packages published