-
Notifications
You must be signed in to change notification settings - Fork 5
/
composer.json
143 lines (143 loc) · 5.18 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
{
"name": "aeon-php/calendar",
"type": "library",
"description": "PHP type safe, immutable calendar library",
"keywords": [
"calendar",
"immutable",
"date",
"time",
"datetime"
],
"license": "MIT",
"require": {
"php": "~8.1.10 || ~8.2.0 || ~8.3.0",
"ext-json": "*",
"ext-mbstring": "*",
"azuyalabs/yasumi": "~2.0",
"doctrine/dbal": "~3.0",
"psr/cache": "~1.0|~2.0|~3.0",
"psr/clock": "*",
"symfony/config": "~5.4.21||~6.3||~7.0",
"symfony/dependency-injection": "~5.4.21||~6.3||~7.0",
"symfony/form": "~5.4.21||~6.3||~7.0",
"symfony/http-kernel": "~5.4.21||~6.3||~7.0",
"symfony/polyfill-mbstring": "~1.0",
"symfony/validator": "~5.4.21||~6.3||~7.0",
"twig/twig": "~2.10||~3"
},
"require-dev": {
"ext-bcmath": "*",
"ext-pcov": "*",
"flow-php/etl": "^0.1",
"flow-php/etl-adapter-http": "^0.1 || ^0.2",
"google/apiclient": "^2.0",
"phpbench/phpbench": "^1.2.6",
"symfony/browser-kit": "~5.4.21||~6.3||~7.0",
"symfony/cache": "~5.4||~6.3||~7.0",
"symfony/dom-crawler": "~5.4.21||~6.3||~7.0",
"symfony/framework-bundle": "~5.4.21||~6.3||~7.0",
"symfony/security-bundle": "~5.4.21||~6.3||~7.0"
},
"suggest": {
"ext-bcmath": "Compare time units with high precision"
},
"config": {
"optimize-autoloader": true,
"sort-packages": true
},
"autoload": {
"files": [
"src/retry/src/Aeon/Retry/retry_helper.php",
"src/sleep/src/Aeon/Sleep/sleep.php"
],
"psr-4": {
"Aeon\\": [
"src/business-hours/src/Aeon",
"src/calendar-doctrine/src/Aeon",
"src/calendar-holidays-yasumi/src/Aeon",
"src/calendar-holidays/src/Aeon",
"src/calendar-twig/src/Aeon",
"src/calendar/src/Aeon",
"src/collection/src/Aeon",
"src/rate-limiter/src/Aeon",
"src/retry/src/Aeon",
"src/sleep/src/Aeon",
"src/symfony-bundle/src/Aeon"
],
"Aeon\\Doctrine\\": [
"src/calendar-doctrine/src/Aeon/Doctrine"
]
}
},
"autoload-dev": {
"psr-4": {
"Aeon\\Calculator\\Tests\\": [
"src/calendar/tests/Aeon/Calculator/Tests/"
],
"Aeon\\Calendar\\Benchmark\\": [
"src/calendar/benchmark/Aeon/Calendar/Benchmark/"
],
"Aeon\\Calendar\\Tests\\": [
"src/business-hours/tests/Aeon/Calendar/Tests/",
"src/calendar-holidays-yasumi/tests/Aeon/Calendar/Tests/",
"src/calendar-holidays/tests/Aeon/Calendar/Tests/",
"src/calendar/tests/Aeon/Calendar/Tests/"
],
"Aeon\\Collection\\Tests\\": "src/collection/tests/Aeon/Collection/Tests/",
"Aeon\\Doctrine\\Tests\\": "src/calendar-doctrine/tests/Aeon/Doctrine/Tests/",
"Aeon\\RateLimiter\\Tests\\": "src/rate-limiter/tests/Aeon/RateLimiter/Tests/",
"Aeon\\Retry\\Tests\\": "src/retry/tests/Aeon/Retry/Tests/",
"Aeon\\Sleep\\Tests\\": "src/sleep/tests/Aeon/Sleep/Tests/",
"Aeon\\Symfony\\AeonBundle\\Tests\\": "src/symfony-bundle/tests/Aeon/Symfony/AeonBundle/Tests/",
"Aeon\\Twig\\Tests\\": "src/calendar-twig/tests/Aeon/Twig/Tests/"
}
},
"scripts": {
"benchmark": [
"Composer\\Config::disableProcessTimeout",
"tools/vendor/bin/phpbench run --report=aeon"
],
"build": [
"@static:analyze",
"@test",
"@test:mutation"
],
"test": [
"tools/vendor/bin/phpunit"
],
"test:mutation": [
"Composer\\Config::disableProcessTimeout",
"tools/vendor/bin/infection -j2"
],
"static:analyze": [
"tools/vendor/bin/psalm --output-format=compact",
"tools/vendor/bin/phpstan analyze -c phpstan.neon --memory-limit=-1",
"tools/vendor/bin/php-cs-fixer fix --dry-run"
],
"monorepo:validate": "tools/vendor/bin/monorepo-builder validate",
"cs:php:fix": "tools/vendor/bin/php-cs-fixer fix",
"tools:install": "composer install --working-dir=./tools",
"post-install-cmd": [
"@tools:install"
],
"post-update-cmd": [
"@tools:install"
]
},
"replace": {
"aeon-php/business-hours": "self.version",
"aeon-php/calendar": "self.version",
"aeon-php/calendar-doctrine": "self.version",
"aeon-php/calendar-holidays": "self.version",
"aeon-php/calendar-holidays-yasumi": "self.version",
"aeon-php/calendar-twig": "self.version",
"aeon-php/collection": "self.version",
"aeon-php/rate-limiter": "self.version",
"aeon-php/retry": "self.version",
"aeon-php/sleep": "self.version",
"aeon-php/symfony-bundle": "self.version"
},
"minimum-stability": "dev",
"prefer-stable": true
}