1
0
mirror of https://github.com/rlanvin/php-rrule.git synced 2024-11-29 06:24:10 +01:00
php-rrule/composer.json
rlanvin 7c93c0e48a Rewrite the core algorithm to use a generator
Drop compatibility with PHP < 5.6
Ref #43
2019-01-13 10:04:03 +00:00

28 lines
675 B
JSON
Executable File

{
"name": "rlanvin/php-rrule",
"type": "library",
"description": "Lightweight and fast recurrence rules for PHP (RFC 5545)",
"keywords": ["rrule","ical","recurrence","recurring","date"],
"homepage": "https://github.com/rlanvin/php-rrule",
"license": "MIT",
"require": {
"php": ">=5.6.0"
},
"suggest": {
"ext-intl": "Intl extension is needed for humanReadable()"
},
"autoload": {
"psr-4": {
"RRule\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"RRule\\Tests\\": "tests/"
}
},
"require-dev": {
"phpunit/phpunit": "^4.8|^5.5|^6.5"
}
}