1
0
mirror of https://github.com/rlanvin/php-rrule.git synced 2025-02-18 07:54:14 +01:00
php-rrule/composer.json

23 lines
566 B
JSON
Raw Normal View History

2015-06-23 11:31:18 +03:00
{
"name": "rlanvin/php-rrule",
"type": "library",
2015-07-01 12:23:39 +03:00
"description": "Lightweight and fast recurrence rules for PHP (RFC 5545)",
"keywords": ["rrule","ical","recurrence","recurring","date"],
2015-06-23 11:31:18 +03:00
"homepage": "https://github.com/rlanvin/php-rrule",
"license": "MIT",
"require": {
"php": ">=5.3.0"
2015-06-23 11:31:18 +03:00
},
2015-07-08 12:40:45 +03:00
"suggest": {
"ext-intl": "Intl extension is needed for humanReadable()"
},
2015-06-23 11:31:18 +03:00
"autoload": {
"psr-4": {
"RRule\\": "src/"
}
2017-03-29 14:27:26 +01:00
},
"require-dev": {
"phpunit/phpunit": "<6"
2015-06-23 11:31:18 +03:00
}
2017-03-29 14:27:26 +01:00
}