├── .editorconfig ├── CHANGELOG.md ├── LICENSE.md ├── README.md ├── composer.json └── src ├── EvolvableLinkInterface.php ├── EvolvableLinkProviderInterface.php ├── LinkInterface.php └── LinkProviderInterface.php /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php-fig/link/HEAD/.editorconfig -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php-fig/link/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php-fig/link/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php-fig/link/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php-fig/link/HEAD/composer.json -------------------------------------------------------------------------------- /src/EvolvableLinkInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php-fig/link/HEAD/src/EvolvableLinkInterface.php -------------------------------------------------------------------------------- /src/EvolvableLinkProviderInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php-fig/link/HEAD/src/EvolvableLinkProviderInterface.php -------------------------------------------------------------------------------- /src/LinkInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php-fig/link/HEAD/src/LinkInterface.php -------------------------------------------------------------------------------- /src/LinkProviderInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php-fig/link/HEAD/src/LinkProviderInterface.php --------------------------------------------------------------------------------