-
-
Notifications
You must be signed in to change notification settings - Fork 46
/
composer.json
40 lines (40 loc) · 902 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
36
37
38
39
40
{
"name" : "donatj/simplecalendar",
"type" : "library",
"description": "A light, easy to use calendar rendering library",
"keywords" : ["calendar"],
"homepage" : "https://donatstudios.com/SimpleCalendar",
"license" : "MIT",
"require" : {
"php": ">=7.2",
"ext-calendar": "*"
},
"require-dev": {
"ext-dom": "*",
"corpus/coding-standard": "^0.6.0",
"donatj/drop": "^1.1",
"friendsofphp/php-cs-fixer": "^3.3",
"phpstan/phpstan": "^1.10",
"phpunit/phpunit": "*",
"squizlabs/php_codesniffer": "^3.7"
},
"authors" : [
{
"name" : "Jesse G. Donat",
"email" : "[email protected]",
"homepage": "https://donatstudios.com",
"role" : "Developer"
}
],
"autoload" : {
"psr-4": {
"donatj\\": "src/"
}
},
"config": {
"sort-packages": true,
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}