-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
51 lines (51 loc) · 1.37 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
{
"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.2",
"ext-date": "*",
"thecodingmachine/safe": "^2.1",
"psr/clock": "^1.0"
},
"require-dev": {
"brainbits/phpcs-standard": "^7.0",
"ergebnis/phpstan-rules": "^2.0",
"jangregor/phpstan-prophecy": "^1.0",
"lcobucci/clock": "^3.0",
"phpstan/phpstan": "^1.9.0",
"phpunit/phpunit": "^10.1",
"symfony/serializer": "^6.0",
"thecodingmachine/phpstan-safe-rule": "^1.2",
"thecodingmachine/phpstan-strict-rules": "^1.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/" }
},
"extra": {
"branch-alias": {
"dev-master": "3.0-dev"
}
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}