This repository has been archived by the owner on Jul 22, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 24
/
composer.json
138 lines (138 loc) · 4.42 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
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
{
"name": "rinvex/cortex",
"description": "Rinvex Cortex is a solid foundation for enterprise solutions, that provides a flexible and extensible architecture for building multi-lingual, multi-tenant applications with content management, themeable views, application modules and much more.",
"keywords": [
"rinvex",
"cortex",
"flexible",
"framework",
"laravel",
"themes",
"solution",
"extension",
"enterprise",
"application",
"multi-lingual",
"multi-tenant",
"bootstrap",
"module"
],
"type": "project",
"license": "MIT",
"homepage": "https://rinvex.com",
"support": {
"email": "[email protected]",
"issues": "https://github.com/rinvex/cortex/issues",
"source": "https://github.com/rinvex/cortex",
"docs": "https://github.com/rinvex/cortex/blob/master/README.md"
},
"authors": [
{
"name": "Rinvex LLC",
"homepage": "https://rinvex.com",
"email": "[email protected]"
},
{
"name": "Abdelrahman Omran",
"homepage": "https://omranic.com",
"email": "[email protected]",
"role": "Project Lead"
},
{
"name": "The Generous Laravel Community",
"homepage": "https://github.com/rinvex/cortex/contributors"
}
],
"repositories": [
{
"type": "vcs",
"url": "https://github.com/laravel-shift/laravel-self-diagnosis.git"
},
{
"type": "vcs",
"url": "https://github.com/laravel-shift/uniquewith-validator.git"
}
],
"require": {
"php": "^8.1.0",
"ext-curl": "*",
"ext-json": "*",
"ext-mbstring": "*",
"ext-openssl": "*",
"ext-pdo": "*",
"aws/aws-sdk-php": "^3.200.0",
"cortex/auth-tenantable": "^1.0.0",
"cortex/categories": "^7.0.0",
"cortex/foundation": "^8.0.0",
"cortex/oauth-tenantable": "^1.0.0",
"cortex/pages-tenantable": "^1.0.0",
"cortex/settings-tenantable": "^1.0.0",
"cortex/tags": "^7.0.0",
"cortex/tenants": "^8.0.0",
"doctrine/dbal": "^3.3.0",
"guzzlehttp/guzzle": "^7.4.0",
"laravel/envoy": "^2.8.0",
"laravel/framework": "^10.0.0 || ^11.0.0",
"laravel/tinker": "^2.8.0",
"league/flysystem-aws-s3-v3": "^3.0.0",
"predis/predis": "^2.0.0",
"pusher/pusher-php-server": "^7.0.0",
"spatie/laravel-db-snapshots": "^2.0.0",
"spatie/laravel-ignition": "^2.0.0"
},
"require-dev": {
"roave/security-advisories": "dev-master",
"barryvdh/laravel-debugbar": "^3.6.0",
"barryvdh/laravel-ide-helper": "^2.12.0",
"beyondcode/laravel-dump-server": "^1.7.0",
"beyondcode/laravel-query-detector": "^1.6.0",
"codedungeon/phpunit-result-printer": "^0.32.0",
"fakerphp/faker": "^1.19.0",
"itsgoingd/clockwork": "^5.1.0",
"mockery/mockery": "^1.6.0",
"nunomaduro/collision": "^7.5.0",
"phpunit/phpunit": "^10.1.0",
"symfony/thanks": "^1.2.0"
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"scripts": {
"post-root-package-install": [
"@php -r \"file_exists('.env') || copy('.env.example', '.env');\"",
"@php artisan key:generate --ansi --ifnot"
],
"post-create-project-cmd": [
"@php artisan key:generate --ansi --ifnot"
],
"post-autoload-dump": [
"Illuminate\\Foundation\\ComposerScripts::postAutoloadDump",
"@php artisan package:discover --ansi",
"@php artisan cortex:generate:idehelper"
]
},
"config": {
"sort-packages": true,
"preferred-install": "dist",
"optimize-autoloader": true,
"allow-plugins": {
"rinvex/laravel-composer": true,
"composer/package-versions-deprecated": true,
"symfony/thanks": true
}
},
"extra": {
"laravel": {
"dont-discover": [
"rinvex/tmp-lord-laroute",
"barryvdh/laravel-debugbar",
"appstract/laravel-opcache",
"mariuzzo/laravel-js-localization"
]
}
},
"minimum-stability": "dev",
"prefer-stable": true
}