├── .env.example ├── .github └── workflows │ └── ci.yml ├── .gitignore ├── .smoke-test-env.example ├── .tool-versions ├── CHANGELOG.md ├── LICENSE.txt ├── Makefile ├── README.md ├── composer.json ├── composer.lock ├── dev-smoke-test.php ├── init ├── phpunit.xml ├── ruleset.xml ├── src ├── Batch │ ├── Batch.php │ ├── BatchRequest.php │ ├── BatchResponse.php │ └── BatchResult.php ├── Cronofy.php ├── Exception │ ├── CronofyException.php │ └── PartialBatchFailureException.php ├── Http │ ├── CurlRequest.php │ └── HttpRequest.php └── PagedResultIterator.php └── tests ├── AccessibleCalendarsTest.php ├── ApplicationCalendarTest.php ├── BatchTest.php ├── CronofyTest.php ├── DelegatedAuthorizationsTest.php ├── ReadEventsTest.php ├── RulesTest.php ├── SchedulingTest.php ├── UpsertEventTest.php └── bootstrap.php /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cronofy/cronofy-php/HEAD/.env.example -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cronofy/cronofy-php/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cronofy/cronofy-php/HEAD/.gitignore -------------------------------------------------------------------------------- /.smoke-test-env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cronofy/cronofy-php/HEAD/.smoke-test-env.example -------------------------------------------------------------------------------- /.tool-versions: -------------------------------------------------------------------------------- 1 | php 7.4.33 2 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cronofy/cronofy-php/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cronofy/cronofy-php/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cronofy/cronofy-php/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cronofy/cronofy-php/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cronofy/cronofy-php/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cronofy/cronofy-php/HEAD/composer.lock -------------------------------------------------------------------------------- /dev-smoke-test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cronofy/cronofy-php/HEAD/dev-smoke-test.php -------------------------------------------------------------------------------- /init: -------------------------------------------------------------------------------- 1 | #! /bin/bash 2 | 3 | brew install php jq 4 | -------------------------------------------------------------------------------- /phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cronofy/cronofy-php/HEAD/phpunit.xml -------------------------------------------------------------------------------- /ruleset.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cronofy/cronofy-php/HEAD/ruleset.xml -------------------------------------------------------------------------------- /src/Batch/Batch.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cronofy/cronofy-php/HEAD/src/Batch/Batch.php -------------------------------------------------------------------------------- /src/Batch/BatchRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cronofy/cronofy-php/HEAD/src/Batch/BatchRequest.php -------------------------------------------------------------------------------- /src/Batch/BatchResponse.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cronofy/cronofy-php/HEAD/src/Batch/BatchResponse.php -------------------------------------------------------------------------------- /src/Batch/BatchResult.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cronofy/cronofy-php/HEAD/src/Batch/BatchResult.php -------------------------------------------------------------------------------- /src/Cronofy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cronofy/cronofy-php/HEAD/src/Cronofy.php -------------------------------------------------------------------------------- /src/Exception/CronofyException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cronofy/cronofy-php/HEAD/src/Exception/CronofyException.php -------------------------------------------------------------------------------- /src/Exception/PartialBatchFailureException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cronofy/cronofy-php/HEAD/src/Exception/PartialBatchFailureException.php -------------------------------------------------------------------------------- /src/Http/CurlRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cronofy/cronofy-php/HEAD/src/Http/CurlRequest.php -------------------------------------------------------------------------------- /src/Http/HttpRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cronofy/cronofy-php/HEAD/src/Http/HttpRequest.php -------------------------------------------------------------------------------- /src/PagedResultIterator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cronofy/cronofy-php/HEAD/src/PagedResultIterator.php -------------------------------------------------------------------------------- /tests/AccessibleCalendarsTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cronofy/cronofy-php/HEAD/tests/AccessibleCalendarsTest.php -------------------------------------------------------------------------------- /tests/ApplicationCalendarTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cronofy/cronofy-php/HEAD/tests/ApplicationCalendarTest.php -------------------------------------------------------------------------------- /tests/BatchTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cronofy/cronofy-php/HEAD/tests/BatchTest.php -------------------------------------------------------------------------------- /tests/CronofyTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cronofy/cronofy-php/HEAD/tests/CronofyTest.php -------------------------------------------------------------------------------- /tests/DelegatedAuthorizationsTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cronofy/cronofy-php/HEAD/tests/DelegatedAuthorizationsTest.php -------------------------------------------------------------------------------- /tests/ReadEventsTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cronofy/cronofy-php/HEAD/tests/ReadEventsTest.php -------------------------------------------------------------------------------- /tests/RulesTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cronofy/cronofy-php/HEAD/tests/RulesTest.php -------------------------------------------------------------------------------- /tests/SchedulingTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cronofy/cronofy-php/HEAD/tests/SchedulingTest.php -------------------------------------------------------------------------------- /tests/UpsertEventTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cronofy/cronofy-php/HEAD/tests/UpsertEventTest.php -------------------------------------------------------------------------------- /tests/bootstrap.php: -------------------------------------------------------------------------------- 1 |