forked from blueoceanideas/themosis-framework
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
121 lines (121 loc) · 3.36 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
{
"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": "^7.3 || ^8.0",
"composer/installers": "^1.0",
"dragonmantank/cron-expression": "^3.0",
"egulias/email-validator": "^2.1.10",
"doctrine/inflector": "^1.4|^2.0",
"guzzlehttp/guzzle": "^7.0.1",
"league/commonmark": "^1.3",
"league/flysystem": "^1.0.34",
"monolog/monolog": "^2.0",
"nesbot/carbon": "^2.17",
"opis/closure": "^3.5.3",
"psr/container": "^1.0",
"psr/simple-cache": "^1.0",
"ramsey/uuid": "^4.0",
"swiftmailer/swiftmailer": "^6.0",
"symfony/console": "^5.1",
"symfony/error-handler": "^5.1",
"symfony/finder": "^5.1",
"symfony/http-foundation": "^5.1",
"symfony/http-kernel": "^5.1",
"symfony/mime": "^5.1",
"symfony/process": "^5.1",
"symfony/routing": "^5.1",
"tijsverkoyen/css-to-inline-styles": "^2.2.2",
"vlucas/phpdotenv": "^5.2",
"voku/portable-ascii": "^1.4.8",
"illuminate/auth": "^8.9",
"illuminate/broadcasting": "^8.9",
"illuminate/bus": "^8.9",
"illuminate/cache": "^8.9",
"illuminate/config": "^8.9",
"illuminate/console": "^8.9",
"illuminate/container": "^8.9",
"illuminate/cookie": "^8.9",
"illuminate/database": "^8.9",
"illuminate/encryption": "^8.9",
"illuminate/events": "^8.9",
"illuminate/filesystem": "^8.9",
"illuminate/hashing": "^8.9",
"illuminate/http": "^8.9",
"illuminate/log": "^8.9",
"illuminate/mail": "^8.9",
"illuminate/notifications": "^8.9",
"illuminate/pagination": "^8.9",
"illuminate/queue": "^8.9",
"illuminate/redis": "^8.9",
"illuminate/routing": "^8.9",
"illuminate/session": "^8.9",
"illuminate/support": "^8.9",
"illuminate/validation": "^8.9",
"illuminate/view": "^8.9",
"laravel/tinker": "^2.3",
"laravel/ui": "^3.0",
"league/fractal": "^0.19.2",
"symfony/property-access": "^4.2",
"twig/twig": " ^3.0"
},
"require-dev": {
"aws/aws-sdk-php": "^3.0",
"doctrine/dbal": "^2.6",
"league/flysystem-cached-adapter": "^1.0",
"mockery/mockery": "^1.3.1",
"pda/pheanstalk": "^4.0",
"phpunit/phpunit": "^8.4|^9.0",
"predis/predis": "^1.1.1",
"symfony/cache": "^5.1",
"beyondcode/laravel-dump-server": "^1.4",
"friendsofphp/php-cs-fixer": "^2.15",
"phpstan/phpstan": "^0.12",
"szepeviktor/phpstan-wordpress": "^0.6.0",
"symfony/var-dumper": "^5.1"
},
"suggest": {
"fzaninotto/faker": "Required to use the eloquent factory builder (^1.8).",
"filp/whoops": "^2.4"
},
"provide": {
"psr/container-implementation": "1.0"
},
"conflict": {
"tightenco/collect": "<5.5.33"
},
"scripts": {
"test": "phpunit"
},
"config": {
"sort-packages": true
},
"minimum-stability": "dev",
"prefer-stable": true
}