-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
42 lines (42 loc) · 1.09 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
{
"name": "brainbits/period",
"description": "Period handling",
"keywords": ["period", "date"],
"homepage": "http://brainbits.net",
"license": "MIT",
"authors": [
{
"name": "Stephan Wentz",
"email": "[email protected]"
}
],
"require": {
"php": "^8.3",
"ext-date": "*",
"psr/clock": "^1.0"
},
"require-dev": {
"brainbits/phpcs-standard": "^8.0",
"ergebnis/phpstan-rules": "^2.0",
"lcobucci/clock": "^3.0",
"phpstan/phpstan": "^2.0",
"phpunit/phpunit": "^12.0",
"symfony/serializer": "^6.0|^7.0",
"twig/twig": "^3.0",
"roave/backward-compatibility-check": "^8.2"
},
"suggest": {
"symfony/serializer": "If you need to serialize periods"
},
"autoload": {
"psr-4": { "Brainbits\\Period\\": "src/" }
},
"autoload-dev": {
"psr-4": { "Brainbits\\PeriodTest\\": "tests/" }
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}