-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
55 lines (55 loc) · 1.2 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
{
"name": "trehinos/thor",
"description": "Smart framework for PHP-8.2",
"version": "1.1.0",
"type": "project",
"keywords": [
"php8.2",
"framework",
"http",
"daemon"
],
"license": "MIT",
"minimum-stability": "stable",
"authors": [
{
"name": "Sébastien GELDREICH",
"email": "trehinos@gmail.com"
}
],
"autoload": {
"psr-4": {
"Thor\\": "thor/",
"App\\": "app/src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"config": {
"vendor-dir": "vendors/",
"bin-dir": "bin/"
},
"require": {
"php": "^8.2",
"ext-curl": "*",
"ext-ftp": "*",
"ext-intl": "*",
"ext-json": "*",
"ext-mbstring": "*",
"ext-openssl": "*",
"ext-pdo": "*",
"ext-readline": "*",
"ext-zip": "*",
"phpoffice/phpspreadsheet": "1.*",
"datatables.net/editor-php": "2.*",
"symfony/var-dumper": "5.*",
"symfony/yaml": "5.*",
"twig/twig": "3.*"
},
"require-dev": {
"phpunit/phpunit": "^9"
}
}