streams/vendor/simshaun/recurr/composer.json

38 lines
699 B
JSON
Raw Normal View History

2019-04-09 01:35:23 +00:00
{
"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",
2019-09-26 01:43:49 +00:00
"email": "shaun@shaun.pub",
"homepage": "https://shaun.pub"
2019-04-09 01:35:23 +00:00
}
],
"require": {
"php": ">=5.5.0",
"doctrine/collections": "~1.3"
},
"require-dev": {
"phpunit/phpunit": "~4.5"
},
"autoload": {
"psr-4": {
2019-09-26 01:43:49 +00:00
"Recurr\\": "src/Recurr/"
}
},
"autoload-dev": {
"psr-4": {
2019-04-09 01:35:23 +00:00
"Recurr\\Test\\": "tests/"
}
},
"extra": {
"branch-alias": {
"dev-master": "0.x-dev"
}
}
}