summaryrefslogtreecommitdiffstats
path: root/vendor/simshaun/recurr/composer.json
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/simshaun/recurr/composer.json')
-rw-r--r--vendor/simshaun/recurr/composer.json41
1 files changed, 41 insertions, 0 deletions
diff --git a/vendor/simshaun/recurr/composer.json b/vendor/simshaun/recurr/composer.json
new file mode 100644
index 0000000..5474da2
--- /dev/null
+++ b/vendor/simshaun/recurr/composer.json
@@ -0,0 +1,41 @@
+{
+ "name": "simshaun/recurr",
+ "description": "PHP library for working with recurrence rules",
+ "keywords": ["rrule", "recurrence", "recurring", "events", "dates"],
+ "homepage": "https://github.com/simshaun/recurr",
+ "type": "library",
+ "license": "MIT",
+ "authors": [
+ {
+ "name": "Shaun Simmons",
+ "email": "shaun@shaun.pub",
+ "homepage": "https://shaun.pub"
+ }
+ ],
+ "require": {
+ "php": "^7.2||^8.0",
+ "doctrine/collections": "~1.6||^2.0"
+ },
+ "require-dev": {
+ "phpunit/phpunit": "^8.5.16",
+ "symfony/yaml": "^5.3"
+ },
+ "autoload": {
+ "psr-4": {
+ "Recurr\\": "src/Recurr/"
+ }
+ },
+ "autoload-dev": {
+ "psr-4": {
+ "Recurr\\Test\\": "tests/Recurr/Test"
+ }
+ },
+ "extra": {
+ "branch-alias": {
+ "dev-master": "0.x-dev"
+ }
+ },
+ "scripts": {
+ "test": "./vendor/bin/phpunit --color=always"
+ }
+}