1
0
mirror of https://github.com/rlanvin/php-rrule.git synced 2024-11-28 05:24:10 +01:00
php-rrule/composer.json

29 lines
710 B
JSON
Raw Permalink Normal View History

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)",
"keywords": ["rrule","ical","recurrence","recurring","date"],
2015-06-23 10:31:18 +02:00
"homepage": "https://github.com/rlanvin/php-rrule",
"license": "MIT",
"require": {
"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": {
"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",
"phpmd/phpmd" : "@stable"
2015-06-23 10:31:18 +02:00
}
2017-03-29 15:27:26 +02:00
}