-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathcomposer.json
72 lines (72 loc) · 2.04 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
{
"name": "ttimot24/horizont-cms",
"version": "1.2.0",
"description": "The CMS that fits exactly to your needs",
"keywords": ["hcms", "laravel","vuejs","bootstrap","website"],
"license": "MIT",
"type": "project",
"require": {
"php": "^8.1",
"laravel/framework": "^10.0",
"lavary/laravel-menu": "1.8.*",
"composer/semver": "*",
"madnest/madzipper" : "*",
"jackiedo/log-reader": "*",
"intervention/image": "*",
"laravel/helpers": "*",
"nesbot/carbon": "2.*",
"mews/purifier": "^3.3",
"laravel/ui": "^4.0",
"codedge/laravel-selfupdater": "^3.4",
"nunomaduro/collision": "^6.1"
},
"require-dev": {
"phpunit/phpunit" : "^10.0",
"mockery/mockery": "1.4.*",
"filp/whoops" : "~2.0",
"bamarni/composer-bin-plugin": "^1.8"
},
"autoload": {
"classmap": [
"database",
"app/Helpers"
],
"psr-4": {
"App\\": "app/"
}
},
"autoload-dev": {
"classmap": [
"resources/tests/TestCase.php",
"resources/tests/ModelFactory.php"
],
"psr-4": {
"Tests\\": "resources/tests/"
}
},
"scripts": {
"post-root-package-install": [
"php -r \"file_exists('.env') || copy('.env.example', '.env');\""
],
"post-create-project-cmd": [
"php artisan key:generate"
],
"post-install-cmd": [
"Illuminate\\Foundation\\ComposerScripts::postInstall"
],
"post-update-cmd": [
"Illuminate\\Foundation\\ComposerScripts::postUpdate"
],
"post-autoload-dump": [
"Illuminate\\Foundation\\ComposerScripts::postAutoloadDump",
"@php artisan package:discover"
]
},
"config": {
"preferred-install": "dist",
"allow-plugins": {
"bamarni/composer-bin-plugin": true,
"phpstan/extension-installer": true
}
}
}