-
-
Notifications
You must be signed in to change notification settings - Fork 29
/
composer.json
141 lines (141 loc) · 4.86 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
139
140
141
{
"name": "astrotomic/opendor.me",
"description": "",
"license": "CC-BY-NC-SA-3.0",
"type": "project",
"keywords": [],
"require": {
"php": "^8.1",
"ext-intl": "*",
"ext-json": "*",
"ext-redis": "*",
"algolia/scout-extended": "^2.1",
"astrotomic/laravel-cachable-attributes": "^0.4.0",
"astrotomic/laravel-github-sponsors": "^0.4.0",
"astrotomic/laravel-imgix": "^1.1.0",
"astrotomic/php-open-graph": "^0.5.2",
"blade-ui-kit/blade-ui-kit": "^0.3.4",
"filament/filament": "^2.17.50",
"guzzlehttp/guzzle": "^7.7",
"laravel/framework": "^9.52.10",
"laravel/horizon": "^5.17",
"laravel/socialite": "^5.6.3",
"mallardduck/blade-boxicons": "^2.4",
"mazedlx/laravel-feature-policy": "^1.3",
"nesbot/carbon": "^2.68.1",
"ryangjchandler/orbit": "^1.2.0",
"sentry/sentry-laravel": "^2.14.2",
"spatie/eloquent-sortable": "^4.0.2",
"spatie/flysystem-dropbox": "^2.0.6",
"spatie/laravel-backup": "^8.1.11",
"spatie/laravel-csp": "^2.8.3",
"spatie/laravel-enum": "^3.0.2",
"spatie/laravel-schedule-monitor": "^3.3",
"spatie/laravel-sitemap": "^6.3.1",
"spatie/laravel-sluggable": "^3.5",
"spatie/once": "^3.1",
"stillat/numeral.php": "^2.0.2"
},
"require-dev": {
"astrotomic/phpunit-assertions": "^0.7.0",
"barryvdh/laravel-debugbar": "^3.8.1",
"barryvdh/laravel-ide-helper": "^2.13",
"egulias/email-validator": "^3.2.6",
"fakerphp/faker": "^1.23.0",
"gajus/dindent": "^2.0.2",
"laracasts/generators": "^2.0.2",
"laravel/pint": "^1.10.3",
"mockery/mockery": "^1.6.2",
"nunomaduro/collision": "^6.4",
"pestphp/pest": "^1.23",
"pestphp/pest-plugin-laravel": "^1.4",
"pestphp/pest-plugin-parallel": "^1.2.1",
"phpunit/phpunit": "^9.6.10",
"povils/phpmnd": "^3.1",
"spatie/laravel-ignition": "^1.6.4",
"spatie/ray": "^1.37.2",
"tightenco/tlint": "^6.3"
},
"conflict": {
"tightenco/tlint": "5.0.16"
},
"suggest": {
"enlightn/enlightnpro": "^1.16"
},
"repositories": [
{
"type": "composer",
"url": "https://satis.laravel-enlightn.com"
}
],
"minimum-stability": "dev",
"prefer-stable": true,
"autoload": {
"psr-4": {
"App\\": "app/",
"Database\\Factories\\": "database/factories/",
"Database\\Seeders\\": "database/seeders/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"config": {
"allow-plugins": {
"pestphp/pest-plugin": true,
"php-http/discovery": true
},
"optimize-autoloader": true,
"preferred-install": "dist",
"sort-packages": true
},
"extra": {
"composer-normalize": {
"indent-size": 4,
"indent-style": "space"
},
"laravel": {
"dont-discover": []
}
},
"scripts": {
"post-update-cmd": [
"@php artisan horizon:publish --ansi --no-interaction",
"@php artisan vendor:publish --tag=laravel-assets --ansi --no-interaction --force"
],
"post-autoload-dump": [
"@composer validate --strict --ansi --no-interaction --quiet",
"@composer normalize --ansi --no-interaction --quiet",
"Illuminate\\Foundation\\ComposerScripts::postAutoloadDump",
"@php artisan package:discover --ansi --no-interaction"
],
"post-root-package-install": [
"@php -r \"file_exists('.env') || copy('.env.example', '.env');\""
],
"post-create-project-cmd": [
"@php artisan key:generate --ansi"
],
"enlightn": "@php artisan enlightn --details --ci",
"fix": [
"@php vendor/bin/pint"
],
"ide": [
"@php artisan ide-helper:generate --ansi --no-interaction --quiet",
"@php artisan ide-helper:meta --ansi --no-interaction --quiet",
"@php artisan ide-helper:models --write --dir=app/Models --reset --ansi --no-interaction --quiet",
"@composer fix --quiet"
],
"lint": [
"@php vendor/bin/phpmnd ./app",
"@php vendor/bin/pint --test",
"@php vendor/bin/tlint lint ./app --no-interaction -v"
],
"normalize": "echo 'composer global require ergebnis/composer-normalize'",
"route:list": "@php artisan route:list --except-path=nova,horizon,_debugbar",
"test": "@php vendor/bin/phpunit",
"test-coverage": "@php vendor/bin/phpunit --coverage-html=.coverage",
"thanks": "echo 'composer global require symfony/thanks'"
}
}