├── .coveralls.yml ├── .editorconfig ├── .github └── workflows │ └── test.yml ├── .gitignore ├── .php_cs.dist ├── .travis.yml ├── LICENSE ├── README.md ├── classes └── Stopwatch.php ├── composer.json ├── composer.lock ├── index.php ├── phpunit.xml ├── tests ├── .htaccess ├── StopwatchTest.php ├── bootstrap.php ├── content │ ├── home │ │ └── home.txt │ └── test │ │ └── default.txt ├── index.php └── site │ ├── config │ └── config.php │ ├── plugins │ └── kirby3-ics │ │ └── index.php │ └── templates │ ├── default.php │ └── home.php └── vendor ├── Expectation.php ├── autoload.php ├── composer ├── ClassLoader.php ├── InstalledVersions.php ├── autoload_classmap.php ├── autoload_namespaces.php ├── autoload_psr4.php ├── autoload_real.php ├── autoload_static.php ├── installed.php └── platform_check.php ├── psr └── container │ └── src │ ├── ContainerExceptionInterface.php │ ├── ContainerInterface.php │ └── NotFoundExceptionInterface.php └── symfony ├── service-contracts ├── Attribute │ ├── Required.php │ └── SubscribedService.php ├── ResetInterface.php ├── ServiceLocatorTrait.php ├── ServiceProviderInterface.php ├── ServiceSubscriberInterface.php └── ServiceSubscriberTrait.php └── stopwatch ├── Section.php ├── Stopwatch.php ├── StopwatchEvent.php └── StopwatchPeriod.php /.coveralls.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnomei/kirby3-stopwatch/HEAD/.coveralls.yml -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnomei/kirby3-stopwatch/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnomei/kirby3-stopwatch/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnomei/kirby3-stopwatch/HEAD/.gitignore -------------------------------------------------------------------------------- /.php_cs.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnomei/kirby3-stopwatch/HEAD/.php_cs.dist -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnomei/kirby3-stopwatch/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnomei/kirby3-stopwatch/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnomei/kirby3-stopwatch/HEAD/README.md -------------------------------------------------------------------------------- /classes/Stopwatch.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnomei/kirby3-stopwatch/HEAD/classes/Stopwatch.php -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnomei/kirby3-stopwatch/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnomei/kirby3-stopwatch/HEAD/composer.lock -------------------------------------------------------------------------------- /index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnomei/kirby3-stopwatch/HEAD/index.php -------------------------------------------------------------------------------- /phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnomei/kirby3-stopwatch/HEAD/phpunit.xml -------------------------------------------------------------------------------- /tests/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnomei/kirby3-stopwatch/HEAD/tests/.htaccess -------------------------------------------------------------------------------- /tests/StopwatchTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnomei/kirby3-stopwatch/HEAD/tests/StopwatchTest.php -------------------------------------------------------------------------------- /tests/bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnomei/kirby3-stopwatch/HEAD/tests/bootstrap.php -------------------------------------------------------------------------------- /tests/content/home/home.txt: -------------------------------------------------------------------------------- 1 | Title: Home 2 | -------------------------------------------------------------------------------- /tests/content/test/default.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnomei/kirby3-stopwatch/HEAD/tests/index.php -------------------------------------------------------------------------------- /tests/site/config/config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnomei/kirby3-stopwatch/HEAD/tests/site/config/config.php -------------------------------------------------------------------------------- /tests/site/plugins/kirby3-ics/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnomei/kirby3-stopwatch/HEAD/tests/site/plugins/kirby3-ics/index.php -------------------------------------------------------------------------------- /tests/site/templates/default.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnomei/kirby3-stopwatch/HEAD/tests/site/templates/default.php -------------------------------------------------------------------------------- /tests/site/templates/home.php: -------------------------------------------------------------------------------- 1 |