-
Notifications
You must be signed in to change notification settings - Fork 121
/
composer.json
94 lines (94 loc) · 2.5 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
{
"name": "themosis/framework",
"description": "The Themosis framework.",
"keywords": ["themosis", "framework", "wordpress"],
"license": "GPL-2.0-or-later",
"support": {
"issues": "https://github.com/themosis/framework/issues",
"source": "https://github.com/themosis/framework"
},
"authors": [
{
"name": "Julien Lambé",
"email": "julien@themosis.com",
"homepage": "https://www.themosis.com/"
}
],
"autoload": {
"psr-4": {
"Themosis\\": "src/"
},
"files": [
"src/Core/helpers.php"
]
},
"autoload-dev": {
"psr-4": {
"Themosis\\Tests\\": "tests/"
}
},
"require": {
"php": "^8.0",
"composer/installers": "^1.9",
"dragonmantank/cron-expression": "^3.0.2",
"filp/whoops": "^2.1",
"guzzlehttp/guzzle": "^7.2",
"illuminate/auth": "^8.83",
"illuminate/broadcasting": "^8.83",
"illuminate/bus": "^8.83",
"illuminate/cache": "^8.83",
"illuminate/config": "^8.83",
"illuminate/console": "^8.83",
"illuminate/container": "^8.83",
"illuminate/cookie": "^8.83",
"illuminate/database": "^8.83",
"illuminate/encryption": "^8.83",
"illuminate/events": "^8.83",
"illuminate/filesystem": "^8.83",
"illuminate/hashing": "^8.83",
"illuminate/http": "^8.83",
"illuminate/log": "^8.83",
"illuminate/mail": "^8.83",
"illuminate/notifications": "^8.83",
"illuminate/pagination": "^8.83",
"illuminate/queue": "^8.83",
"illuminate/redis": "^8.83",
"illuminate/routing": "^8.83",
"illuminate/session": "^8.83",
"illuminate/support": "^8.83",
"illuminate/testing": "^8.83",
"illuminate/validation": "^8.83",
"illuminate/view": "^8.83",
"laravel/tinker": "^2.5",
"laravel/ui": "^3.1",
"league/flysystem": "^1.1",
"league/fractal": "^0.20",
"paragonie/sodium_compat": "^1.15",
"predis/predis": "^1.1",
"ramsey/uuid": "^4.1",
"spatie/enum": "^3.13",
"symfony/property-access": "^5.4",
"twig/twig": " ^3.1",
"vlucas/phpdotenv": "^5.2"
},
"require-dev": {
"beyondcode/laravel-dump-server": "^1.7",
"fakerphp/faker": "^1.9.1",
"friendsofphp/php-cs-fixer": "^3.8",
"johnpbloch/wordpress-core": "^6.0",
"phpunit/phpunit": "^9.0",
"symfony/var-dumper": "^5.4"
},
"scripts": {
"test": "phpunit",
"fix": "php-cs-fixer fix"
},
"config": {
"sort-packages": true,
"allow-plugins": {
"composer/installers": true
}
},
"minimum-stability": "dev",
"prefer-stable": true
}