├── .editorconfig ├── CHANGELOG.md ├── LICENSE.md ├── README.md ├── composer.json └── src ├── Exceptions └── InvalidArgumentException.php ├── PackagistClient.php ├── PackagistUrlGenerator.php └── PackagistVendorFormatter.php /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/packagist-api/HEAD/.editorconfig -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/packagist-api/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/packagist-api/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/packagist-api/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/packagist-api/HEAD/composer.json -------------------------------------------------------------------------------- /src/Exceptions/InvalidArgumentException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/packagist-api/HEAD/src/Exceptions/InvalidArgumentException.php -------------------------------------------------------------------------------- /src/PackagistClient.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/packagist-api/HEAD/src/PackagistClient.php -------------------------------------------------------------------------------- /src/PackagistUrlGenerator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/packagist-api/HEAD/src/PackagistUrlGenerator.php -------------------------------------------------------------------------------- /src/PackagistVendorFormatter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/packagist-api/HEAD/src/PackagistVendorFormatter.php --------------------------------------------------------------------------------