This repository has been archived by the owner on Dec 22, 2022. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathcomposer.json
96 lines (96 loc) · 2.98 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
{
"name": "code4romania/stiri-oficiale",
"type": "project",
"description": "Platform which centralizes all the official press releases, press conferences and decisions of the Committee for Special Emergency Situations.",
"license": "MPL-2.0",
"require": {
"php": "^8.1",
"artesaos/seotools": "^0.22",
"benjaminhirsch/nova-slug-field": "^1.2",
"blade-ui-kit/blade-icons": "^1.1",
"coderello/laravel-nova-lang": "^1.4",
"ebess/advanced-nova-media-library": "^3.4",
"embed/embed": "^4.3",
"emilianotisato/nova-tinymce": "^1.1",
"fideloper/proxy": "^4.2",
"fruitcake/laravel-cors": "^2.0",
"guzzlehttp/guzzle": "^7.2",
"infinety-es/nova-filemanager": "dev-master",
"laravel/framework": "^8.0",
"laravel/nova": "~3.0",
"laravel/scout": "^9.2",
"laravel/tinker": "^2.0",
"league/flysystem-aws-s3-v3": "^1.0",
"optimistdigital/nova-drafts": "^1.1",
"optimistdigital/nova-menu-builder": "^6.0",
"optimistdigital/nova-sortable": "^2.1",
"sentry/sentry-laravel": "^2.8",
"spatie/laravel-backup": "^6.16",
"spatie/laravel-feed": "^3.1",
"spatie/laravel-robots-middleware": "^1.2",
"spatie/laravel-sitemap": "^5.7",
"teamtnt/laravel-scout-tntsearch-driver": "^11.1",
"timothyasp/nova-color-field": "^1.0",
"vink/nova-cache-card": "^1.0"
},
"require-dev": {
"barryvdh/laravel-debugbar": "^3.2",
"deployer/deployer": "^7.0-beta",
"facade/ignition": "^2.4",
"fakerphp/faker": "^1.9.1",
"mockery/mockery": "^1.3.1",
"nunomaduro/collision": "^5.0",
"phpunit/phpunit": "^9.0"
},
"repositories": [
{
"type": "composer",
"url": "https://nova.laravel.com"
},
{
"type": "vcs",
"url": "https://github.com/andreiio/Nova-Filemanager"
}
],
"config": {
"optimize-autoloader": true,
"preferred-install": "dist",
"sort-packages": true
},
"extra": {
"laravel": {
"dont-discover": []
}
},
"autoload": {
"psr-4": {
"App\\": "app/"
},
"classmap": [
"database/seeds",
"database/factories"
]
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"scripts": {
"post-autoload-dump": [
"Illuminate\\Foundation\\ComposerScripts::postAutoloadDump",
"@php artisan package:discover --ansi"
],
"post-root-package-install": [
"@php -r \"file_exists('.env') || copy('.env.example', '.env');\""
],
"post-create-project-cmd": [
"@php artisan key:generate --ansi"
],
"post-update-cmd": [
"@php artisan nova:publish"
]
}
}