forked from maslauskas/event-store
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
51 lines (51 loc) · 1.1 KB
/
composer.json
File metadata and controls
51 lines (51 loc) · 1.1 KB
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
{
"name": "cronxco/data-model",
"description": "Data model for Spark using Laravel and MySQL",
"license": "MIT",
"authors": [
{
"name": "Cronxo Co",
"email": "hi@cronx.co"
}
],
"require": {
"php": "^8.0",
"laravel/framework": "^8.67|^9.0|^10.0|^11.0|^12.0",
"spatie/eloquent-sortable": "^3.10|^4.0",
"spatie/laravel-tags": "^4.0",
"sqids/sqids": "^0.5.0",
"spatie/laravel-medialibrary": "^11.5",
"dyrynda/laravel-cascade-soft-deletes": "^4.4",
"typesense/typesense-php": "^5.0",
"laravel/scout": "^10.11",
"laracraft-tech/laravel-useful-additions": "^4.0"
},
"autoload": {
"psr-4": {
"CronxCo\\DataModel\\": "src/"
},
"files": [
"src/helpers.php"
]
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"extra": {
"laravel": {
"providers": [
"CronxCo\\DataModel\\DataModelServiceProvider"
],
"aliases": {
"DataModel": "CronxCo\\DataModel\\DataModelFacade"
}
}
},
"config": {
"allow-plugins": {
"php-http/discovery": true
}
}
}