├── .php-cs-fixer.php ├── CHANGELOG.md ├── LICENSE.md ├── README.md ├── composer.json ├── psalm-baseline.xml ├── psalm.xml └── src ├── Exceptions └── InvalidLink.php ├── Generator.php ├── Generators ├── BaseOutlook.php ├── Google.php ├── Ics.php ├── WebOffice.php ├── WebOutlook.php └── Yahoo.php └── Link.php /.php-cs-fixer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/calendar-links/HEAD/.php-cs-fixer.php -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/calendar-links/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/calendar-links/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/calendar-links/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/calendar-links/HEAD/composer.json -------------------------------------------------------------------------------- /psalm-baseline.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/calendar-links/HEAD/psalm-baseline.xml -------------------------------------------------------------------------------- /psalm.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/calendar-links/HEAD/psalm.xml -------------------------------------------------------------------------------- /src/Exceptions/InvalidLink.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/calendar-links/HEAD/src/Exceptions/InvalidLink.php -------------------------------------------------------------------------------- /src/Generator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/calendar-links/HEAD/src/Generator.php -------------------------------------------------------------------------------- /src/Generators/BaseOutlook.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/calendar-links/HEAD/src/Generators/BaseOutlook.php -------------------------------------------------------------------------------- /src/Generators/Google.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/calendar-links/HEAD/src/Generators/Google.php -------------------------------------------------------------------------------- /src/Generators/Ics.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/calendar-links/HEAD/src/Generators/Ics.php -------------------------------------------------------------------------------- /src/Generators/WebOffice.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/calendar-links/HEAD/src/Generators/WebOffice.php -------------------------------------------------------------------------------- /src/Generators/WebOutlook.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/calendar-links/HEAD/src/Generators/WebOutlook.php -------------------------------------------------------------------------------- /src/Generators/Yahoo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/calendar-links/HEAD/src/Generators/Yahoo.php -------------------------------------------------------------------------------- /src/Link.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/calendar-links/HEAD/src/Link.php --------------------------------------------------------------------------------