-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
35 lines (35 loc) · 862 Bytes
/
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
{
"name": "urgor/calendarr",
"description": "Create stadium like shape calendar png image. Or circle. Cross out past days, highlight current day and/or custom days. Style customizable amlost everything.",
"type": "library",
"license": "MIT",
"homepage": "https://github.com/urgor/calendarr",
"authors": [
{
"name": "Alexandr Olejnik",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"Urgor\\Calendarr\\": "src/"
}
},
"config": {
"optimize-autoloader": true
},
"require": {
"php": ">=7.1",
"ext-gd": "*",
"ext-json": "*",
"ext-mbstring": "*"
},
"require-dev": {
"phpunit/phpunit": "^9.5"
},
"scripts": {
"test": [
"vendor/bin/phpunit"
]
}
}