forked from themosis/framework
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathcomposer.json
83 lines (83 loc) · 2.16 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
{
"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": ">=7.1.0",
"composer/installers": "^1.0",
"dragonmantank/cron-expression": "^2.2",
"filp/whoops": "^2.1",
"guzzlehttp/guzzle": "^6.3",
"illuminate/auth": "^5.8",
"illuminate/bus": "^5.8",
"illuminate/cache": "^5.8",
"illuminate/config": "^5.8",
"illuminate/console": "^5.8",
"illuminate/container": "^5.8",
"illuminate/cookie": "^5.8",
"illuminate/database": "^5.8",
"illuminate/encryption": "^5.8",
"illuminate/events": "^5.8",
"illuminate/filesystem": "^5.8",
"illuminate/hashing": "^5.8",
"illuminate/http": "^5.8",
"illuminate/log": "^5.8",
"illuminate/mail": "^5.8",
"illuminate/notifications": "^5.8",
"illuminate/pagination": "^5.8",
"illuminate/queue": "^5.8",
"illuminate/redis": "^5.8",
"illuminate/routing": "^5.8",
"illuminate/session": "^5.8",
"illuminate/support": "^5.8",
"illuminate/validation": "^5.8",
"illuminate/view": "^5.8",
"laravel/tinker": "^1.0",
"league/flysystem": "^1.0",
"league/fractal": "^0.17.0",
"ramsey/uuid": "^3.8",
"symfony/property-access": "^4.2",
"twig/twig": " ^2.12",
"vlucas/phpdotenv": "^3.3"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^2.15",
"phpstan/phpstan-shim": "^0.11.8",
"phpunit/phpunit": "^7.0",
"symfony/var-dumper": "^6.2",
"szepeviktor/phpstan-wordpress": "^0.3"
},
"scripts": {
"test": "phpunit"
},
"config": {
"sort-packages": true
},
"minimum-stability": "dev",
"prefer-stable": true
}