-
-
Notifications
You must be signed in to change notification settings - Fork 67
Expand file tree
/
Copy pathcomposer.json
More file actions
64 lines (64 loc) · 1.72 KB
/
composer.json
File metadata and controls
64 lines (64 loc) · 1.72 KB
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
55
56
57
58
59
60
61
62
63
64
{
"name": "yohang/calendr",
"description": "Object Oriented calendar management",
"keywords": [
"date",
"calendar",
"events"
],
"homepage": "https://github.com/yohang/CalendR",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Yohan GIARELLI",
"email": "yohan@giarel.li",
"homepage": "http://yohan.giarel.li"
}
],
"require": {
"php": ">=8.2"
},
"require-dev": {
"doctrine/doctrine-bundle": ">=2.7.2,<4.0",
"doctrine/orm": "^2.9.3|^3.0.0",
"friendsofphp/php-cs-fixer": "^3.90",
"infection/infection": "^0.31.9",
"phpspec/prophecy-phpunit": "^2.3.0",
"phpunit/phpunit": "^11.5.44",
"psr/simple-cache": ">=0.2.0,<4",
"rector/rector": "^2.2",
"symfony/browser-kit": ">=6.4,<9.0",
"symfony/config": ">=4.4,<9.0",
"symfony/css-selector": ">=6.4,<9.0",
"symfony/dependency-injection": ">=4.4,<9.0",
"symfony/framework-bundle": ">=6.4,<9.0",
"symfony/http-kernel": ">=5.4,<9.0",
"symfony/twig-bundle": ">=4.4,<9.0",
"symfony/var-dumper": ">=4.4,<9.0",
"twig/twig": "^3.3.2",
"vimeo/psalm": "^6.13@dev"
},
"autoload": {
"psr-4": {
"CalendR\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"CalendR\\Test\\": "tests/",
"App\\": "tests/Bridge/Symfony/Fixtures/"
}
},
"extra": {
"branch-alias": {
"dev-master": "4.0.x-dev"
}
},
"config": {
"allow-plugins": {
"infection/extension-installer": true
},
"sort-packages": true
}
}