2015-06-23 10:31:18 +02:00
|
|
|
{
|
|
|
|
"name": "rlanvin/php-rrule",
|
|
|
|
"type": "library",
|
2015-07-01 11:23:39 +02:00
|
|
|
"description": "Lightweight and fast recurrence rules for PHP (RFC 5545)",
|
2015-06-27 13:12:57 +02:00
|
|
|
"keywords": ["rrule","ical","recurrence","recurring","date"],
|
2015-06-23 10:31:18 +02:00
|
|
|
"homepage": "https://github.com/rlanvin/php-rrule",
|
|
|
|
"license": "MIT",
|
|
|
|
"require": {
|
2019-01-13 11:00:43 +01:00
|
|
|
"php": ">=5.6.0"
|
2015-06-23 10:31:18 +02:00
|
|
|
},
|
2015-07-08 11:40:45 +02:00
|
|
|
"suggest": {
|
|
|
|
"ext-intl": "Intl extension is needed for humanReadable()"
|
|
|
|
},
|
2015-06-23 10:31:18 +02:00
|
|
|
"autoload": {
|
2016-03-15 17:46:31 +01:00
|
|
|
"psr-4": {
|
|
|
|
"RRule\\": "src/"
|
|
|
|
}
|
2017-03-29 15:27:26 +02:00
|
|
|
},
|
2018-05-15 18:41:41 +02:00
|
|
|
"autoload-dev": {
|
|
|
|
"psr-4": {
|
|
|
|
"RRule\\Tests\\": "tests/"
|
|
|
|
}
|
|
|
|
},
|
2017-03-29 15:27:26 +02:00
|
|
|
"require-dev": {
|
2020-12-09 22:26:35 +01:00
|
|
|
"phpunit/phpunit": "^5.7|^6.5|^8.0",
|
2019-09-01 20:50:21 +02:00
|
|
|
"phpmd/phpmd" : "@stable"
|
2015-06-23 10:31:18 +02:00
|
|
|
}
|
2017-03-29 15:27:26 +02:00
|
|
|
}
|