forked from AmphiBee/framework
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
104 lines (104 loc) · 2.78 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
{
"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": "[email protected]",
"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.1",
"ext-ctype": "*",
"ext-filter": "*",
"ext-hash": "*",
"ext-mbstring": "*",
"ext-openssl": "*",
"ext-session": "*",
"ext-tokenizer": "*",
"composer-runtime-api": "^2.2",
"composer/installers": "^2.2",
"dragonmantank/cron-expression": "^3.3.2",
"filp/whoops": "^2.15",
"guzzlehttp/guzzle": "^7.7",
"illuminate/auth": "^10.0",
"illuminate/broadcasting": "^10.0",
"illuminate/bus": "^10.0",
"illuminate/cache": "^10.0",
"illuminate/config": "^10.0",
"illuminate/console": "^10.0",
"illuminate/container": "^10.0",
"illuminate/cookie": "^10.0",
"illuminate/database": "^10.0",
"illuminate/encryption": "^10.0",
"illuminate/events": "^10.0",
"illuminate/filesystem": "^10.0",
"illuminate/hashing": "^10.0",
"illuminate/http": "^10.0",
"illuminate/log": "^10.0",
"illuminate/mail": "^10.0",
"illuminate/notifications": "^10.0",
"illuminate/pagination": "^10.0",
"illuminate/queue": "^10.0",
"illuminate/redis": "^10.0",
"illuminate/routing": "^10.0",
"illuminate/session": "^10.0",
"illuminate/support": "^10.0",
"illuminate/testing": "^10.0",
"illuminate/validation": "^10.0",
"illuminate/view": "^10.0",
"laravel/tinker": "^2.8",
"laravel/ui": "^4.2",
"league/flysystem": "^3.8.0",
"league/fractal": "^0.20",
"paragonie/sodium_compat": "^1.15",
"predis/predis": "^2.0.2",
"ramsey/uuid": "^4.7",
"spatie/enum": "^3.6",
"symfony/property-access": "^5.4",
"twig/twig": " ^3.1",
"vlucas/phpdotenv": "^5.5"
},
"require-dev": {
"beyondcode/laravel-dump-server": "^1.7",
"driftingly/rector-laravel": "^0.20.0",
"fakerphp/faker": "^1.9.1",
"friendsofphp/php-cs-fixer": "^3.8",
"johnpbloch/wordpress-core": "^6.0",
"phpunit/phpunit": "^9.0",
"rector/rector": "^0.17.0",
"symfony/var-dumper": "^6.2"
},
"scripts": {
"test": "phpunit",
"fix": "php-cs-fixer fix"
},
"config": {
"sort-packages": true,
"allow-plugins": {
"composer/installers": true
}
},
"minimum-stability": "dev",
"prefer-stable": true
}