-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
54 lines (54 loc) · 1.19 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
42
43
44
45
46
47
48
49
50
51
52
53
54
{
"name": "roukmoute/polyfill-calendar",
"description": "PHP Polyfill for the Calendar extension",
"type": "library",
"keywords": ["polyfill", "compatibility", "portable", "calendar"],
"require": {
"php": "^7.1 || ^8.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^2.16",
"pedrotroller/php-cs-custom-fixer": "^2.19",
"phpspec/phpspec": "^5.1 || ^6.1 || ^7.2",
"phpstan/phpstan": "^0.12.8",
"phpstan/phpstan-strict-rules": "^0.12.2",
"pyrech/composer-changelogs": "^1.7",
"roave/security-advisories": "dev-master",
"vimeo/psalm": "^4.26"
},
"license": "MIT",
"authors": [
{
"name": "Mathias STRASSER",
"email": "[email protected]"
}
],
"minimum-stability": "stable",
"config": {
"preferred-install": {
"*": "dist"
},
"sort-packages": true,
"allow-plugins": {
"pyrech/composer-changelogs": true
}
},
"autoload": {
"psr-4": {
"Roukmoute\\Polyfill\\Calendar\\": "src"
},
"files": [
"runtime/bootstrap.php"
]
},
"autoload-dev": {
"psr-4": {
"Spec\\": "test/Spec"
}
},
"extra": {
"branch-alias": {
"dev-master": "1.0-dev"
}
}
}