-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
executable file
·66 lines (66 loc) · 1.85 KB
/
composer.json
File metadata and controls
executable file
·66 lines (66 loc) · 1.85 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "byte5/numen",
"type": "project",
"description": "Numen — AI-First Headless CMS by byte5.labs. Content, animated by AI.",
"license": "MIT",
"require": {
"php": "^8.4",
"inertiajs/inertia-laravel": "^2.0",
"jfcherng/php-diff": "^6.16",
"laravel/framework": "^12.0",
"laravel/sanctum": "^4.0",
"laravel/scout": "^10.24",
"laravel/tinker": "^2.11",
"league/flysystem-aws-s3-v3": "^3.32",
"meilisearch/meilisearch-php": "^1.16",
"nuwave/lighthouse": "^6.65",
"pgvector/pgvector": "^0.2.2",
"tightenco/ziggy": "^2.0"
},
"require-dev": {
"fakerphp/faker": "^1.24",
"larastan/larastan": "^3.0",
"laravel/pint": "^1.27",
"laravel/sail": "^1.53",
"mll-lab/laravel-graphiql": "^4.0",
"mockery/mockery": "^1.6",
"nunomaduro/collision": "^8.9",
"phpunit/phpunit": "^11.5",
"spatie/laravel-ignition": "^2.11"
},
"autoload": {
"psr-4": {
"App\\": "app/",
"Database\\Factories\\": "database/factories/",
"Database\\Seeders\\": "database/seeders/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"scripts": {
"post-autoload-dump": [
"Illuminate\\Foundation\\ComposerScripts::postAutoloadDump",
"@php artisan package:discover --ansi"
]
},
"extra": {
"laravel": {
"dont-discover": [
"pgvector/pgvector"
]
}
},
"config": {
"optimize-autoloader": true,
"preferred-install": "dist",
"sort-packages": true,
"allow-plugins": {
"php-http/discovery": true
}
},
"minimum-stability": "stable",
"prefer-stable": true
}