-
-
Notifications
You must be signed in to change notification settings - Fork 80
/
composer.json
161 lines (161 loc) Β· 6.89 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
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
{
"name": "tempest/framework",
"description": "The PHP framework that gets out of your way.",
"license": "MIT",
"require": {
"doctrine/inflector": "^2.0",
"egulias/email-validator": "^4.0.2",
"ext-dom": "*",
"ext-fileinfo": "*",
"ext-libxml": "*",
"ext-mbstring": "*",
"ext-pdo": "*",
"ext-readline": "*",
"ext-simplexml": "*",
"filp/whoops": "^2.15",
"giggsey/libphonenumber-for-php": "^8.13.40",
"guzzlehttp/guzzle": "^7.8",
"laminas/laminas-diactoros": "^3.3",
"masterminds/html5": "^2.9",
"monolog/monolog": "^3.7.0",
"nette/php-generator": "^4.1.6",
"nikic/php-parser": "^5.3",
"php": "^8.3",
"psr-discovery/http-client-implementations": "1.x-dev",
"psr-discovery/http-factory-implementations": "1.x-dev",
"psr/cache": "^3.0",
"psr/clock": "^1.0.0",
"psr/http-client": "^1.0.0",
"psr/http-factory": "^1.0",
"psr/http-message": "^1.0|^2.0",
"psr/log": "^3.0.0",
"symfony/cache": "^7.2",
"symfony/process": "^7.1",
"symfony/uid": "^7.1",
"symfony/var-dumper": "^7.1",
"symfony/var-exporter": "^7.1",
"tempest/highlight": "^2.11.2",
"vlucas/phpdotenv": "^5.6"
},
"require-dev": {
"aidan-casey/mock-client": "dev-master",
"friendsofphp/php-cs-fixer": "^3.21",
"guzzlehttp/psr7": "^2.6.1",
"illuminate/view": "~11.7.0",
"jenssegers/blade": "^2.0",
"mikey179/vfsstream": "^2.0@dev",
"nyholm/psr7": "^1.8",
"phpat/phpat": "^0.10.14",
"phpbench/phpbench": "84.x-dev",
"phpstan/phpstan": "^1.10.0",
"phpunit/phpunit": "^11.3.5",
"rector/rector": "1.2.8",
"spatie/phpunit-snapshot-assertions": "^5.1.6",
"spaze/phpstan-disallowed-calls": "^3.1",
"symplify/monorepo-builder": "^11.2"
},
"replace": {
"tempest/auth": "self.version",
"tempest/cache": "self.version",
"tempest/clock": "self.version",
"tempest/command-bus": "self.version",
"tempest/console": "self.version",
"tempest/container": "self.version",
"tempest/core": "self.version",
"tempest/database": "self.version",
"tempest/debug": "self.version",
"tempest/event-bus": "self.version",
"tempest/filesystem": "self.version",
"tempest/generation": "self.version",
"tempest/http": "self.version",
"tempest/http-client": "self.version",
"tempest/log": "self.version",
"tempest/mapper": "self.version",
"tempest/reflection": "self.version",
"tempest/support": "self.version",
"tempest/validation": "self.version",
"tempest/view": "self.version"
},
"minimum-stability": "dev",
"prefer-stable": true,
"autoload": {
"psr-4": {
"Tempest\\Auth\\": "src/Tempest/Auth/src/",
"Tempest\\Cache\\": "src/Tempest/Cache/src/",
"Tempest\\Clock\\": "src/Tempest/Clock/src/",
"Tempest\\CommandBus\\": "src/Tempest/CommandBus/src",
"Tempest\\Console\\": "src/Tempest/Console/src",
"Tempest\\Container\\": "src/Tempest/Container/src",
"Tempest\\Core\\": "src/Tempest/Core/src",
"Tempest\\Database\\": "src/Tempest/Database/src",
"Tempest\\Debug\\": "src/Tempest/Debug/src",
"Tempest\\EventBus\\": "src/Tempest/EventBus/src",
"Tempest\\Filesystem\\": "src/Tempest/Filesystem/src",
"Tempest\\Framework\\": "src/Tempest/Framework",
"Tempest\\Generation\\": "src/Tempest/Generation/src",
"Tempest\\HttpClient\\": "src/Tempest/HttpClient/src",
"Tempest\\Http\\": "src/Tempest/Http/src",
"Tempest\\Log\\": "src/Tempest/Log/src",
"Tempest\\Mapper\\": "src/Tempest/Mapper/src",
"Tempest\\Reflection\\": "src/Tempest/Reflection/src",
"Tempest\\Support\\": "src/Tempest/Support/src",
"Tempest\\Validation\\": "src/Tempest/Validation/src",
"Tempest\\View\\": "src/Tempest/View/src"
},
"files": [
"src/Tempest/CommandBus/src/functions.php",
"src/Tempest/Container/src/functions.php",
"src/Tempest/Core/src/functions.php",
"src/Tempest/Debug/src/functions.php",
"src/Tempest/EventBus/src/functions.php",
"src/Tempest/Http/src/functions.php",
"src/Tempest/Mapper/src/functions.php",
"src/Tempest/Reflection/src/functions.php",
"src/Tempest/Support/src/functions.php",
"src/Tempest/View/src/functions.php"
]
},
"autoload-dev": {
"psr-4": {
"Tempest\\Auth\\Tests\\": "src/Tempest/Auth/tests",
"Tempest\\Cache\\Tests\\": "src/Tempest/Cache/tests",
"Tempest\\Clock\\Tests\\": "src/Tempest/Clock/tests",
"Tempest\\CommandBus\\Tests\\": "src/Tempest/CommandBus/tests",
"Tempest\\Console\\Tests\\": "src/Tempest/Console/tests",
"Tempest\\Container\\Tests\\": "src/Tempest/Container/tests",
"Tempest\\Core\\Tests\\": "src/Tempest/Core/tests",
"Tempest\\Database\\Tests\\": "src/Tempest/Database/tests",
"Tempest\\EventBus\\Tests\\": "src/Tempest/EventBus/tests",
"Tempest\\Filesystem\\Tests\\": "src/Tempest/Filesystem/tests",
"Tempest\\Generation\\Tests\\": "src/Tempest/Generation/tests",
"Tempest\\HttpClient\\Tests\\": "src/Tempest/HttpClient/tests",
"Tempest\\Http\\Tests\\": "src/Tempest/Http/tests",
"Tempest\\Log\\Tests\\": "src/Tempest/Log/tests",
"Tempest\\Mapper\\Tests\\": "src/Tempest/Mapper/tests",
"Tempest\\Reflection\\Tests\\": "src/Tempest/Reflection/tests",
"Tempest\\Support\\Tests\\": "src/Tempest/Support/tests",
"Tempest\\Validation\\Tests\\": "src/Tempest/Validation/tests",
"Tests\\Tempest\\": "tests/"
}
},
"bin": [
"src/Tempest/Console/bin/tempest"
],
"scripts": {
"phpunit": "vendor/bin/phpunit --display-warnings --display-skipped --display-deprecations --display-errors --display-notices",
"coverage": "vendor/bin/phpunit --coverage-html build/reports/html --coverage-clover build/reports/clover.xml",
"csfixer": "vendor/bin/php-cs-fixer fix --allow-risky=yes",
"phpstan": "vendor/bin/phpstan analyse src tests --memory-limit=1G",
"rector": "vendor/bin/rector process --no-ansi",
"merge": "vendor/bin/monorepo-builder merge",
"qa": [
"composer merge",
"./bin/validate-packages",
"./tempest discovery:clear",
"composer csfixer",
"composer rector",
"composer phpunit",
"composer phpstan"
]
}
}