-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
102 lines (102 loc) · 3.51 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
{
"name": "astrotomic/astrotomic.info",
"description": "The astrotomic website",
"license": "MIT",
"type": "project",
"keywords": [],
"authors": [
{
"name": "Tom Witkowski",
"email": "[email protected]",
"homepage": "https://gummibeer.de",
"role": "Developer"
}
],
"homepage": "https://astrotomic.info",
"require": {
"php": "^8.1",
"ext-json": "*",
"astrotomic/ecologi-sdk": "^0.1.0",
"astrotomic/laravel-github-sponsors": "^0.4.0",
"astrotomic/laravel-imgix": "^1.0",
"calebporzio/sushi": "^2.4",
"composer/semver": "^3.3",
"guzzlehttp/guzzle": "^7.2",
"knplabs/github-api": "^3.9",
"laravel/framework": "^9.19",
"owenvoke/blade-fontawesome": "^2.0",
"spatie/packagist-api": "^2.1"
},
"require-dev": {
"barryvdh/laravel-ide-helper": "^2.12",
"fakerphp/faker": "^1.9.1",
"laravel/pint": "^1.2",
"mockery/mockery": "^1.4.4",
"nunomaduro/collision": "^6.1",
"pestphp/pest": "^1.22",
"pestphp/pest-plugin-laravel": "^1.3",
"spatie/laravel-ignition": "^1.0",
"spatie/laravel-ray": "^1.37"
},
"minimum-stability": "dev",
"prefer-stable": true,
"autoload": {
"psr-4": {
"App\\": "app/"
}
},
"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 vendor:publish --tag=laravel-assets --ansi --force"
],
"post-autoload-dump": [
"@composer validate --strict --ansi --no-interaction",
"@composer normalize --ansi --no-interaction --quiet",
"@composer thanks --ansi --no-interaction --quiet",
"Illuminate\\Foundation\\ComposerScripts::postAutoloadDump",
"@php artisan package:discover --ansi",
"@php artisan icons:cache --ansi"
],
"post-root-package-install": [
"@php -r \"file_exists('.env') || copy('.env.example', '.env');\""
],
"post-create-project-cmd": [
"@php artisan key:generate --ansi"
],
"fix": "@php vendor/bin/pint",
"ide": [
"@php artisan ide-helper:eloquent --ansi --no-interaction --quiet",
"@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 --ansi --reset --no-interaction --quiet",
"find ./app/Models/ -type f -exec sed -i -e 's/@mixin \\\\Eloquent/@mixin \\\\Illuminate\\\\Database\\\\Eloquent\\\\Builder/g' {} \\;",
"find ./app/Models/ -type f -exec sed -i -e 's/\\\\Illuminate\\\\Support\\\\Carbon/\\\\Carbon\\\\Carbon/g' {} \\;",
"@composer fix"
],
"normalize": "echo 'composer global require ergebnis/composer-normalize'",
"thanks": "echo 'composer global require symfony/thanks'"
}
}