-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathcomposer.json
41 lines (41 loc) · 1.01 KB
/
composer.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
{
"name": "panlatent/cron-expression-descriptor",
"description": "Converts cron expressions into human readable descriptions.",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Panlatent",
"email": "panlatent@gmail.com"
},
{
"name": "CaliforniaMountainSnake",
"email": "CaliforniaMountainSnake1@yandex.ru"
}
],
"minimum-stability": "stable",
"prefer-stable": true,
"require": {
"php": "^7.1|^8.0",
"ext-intl": "*",
"ext-ctype": "*",
"myclabs/php-enum": "~1.5"
},
"require-dev": {
"phpunit/phpunit": "^7.5|^8.0",
"php-coveralls/php-coveralls": "^2.1"
},
"suggest": {
"ext-intl": "Help translate cron express description"
},
"autoload": {
"psr-4": {
"Panlatent\\CronExpressionDescriptor\\": "src/"
}
},
"extra": {
"branch-alias": {
"dev-master": "1.0.x-dev"
}
}
}