-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
112 lines (112 loc) · 3.06 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
{
"name": "placephant/placephant",
"description": "Placephant.",
"license": "MIT",
"type": "project",
"keywords": [
"placephant",
"elephpant",
"TJVB"
],
"readme": "README.md",
"authors": [
{
"name": "Tobias van Beek",
"email": "[email protected]",
"homepage": "http://www.tjvb.nl"
}
],
"support": {
"issues": "https://gitlab.com/tjvb/placephant/-/issues",
"source": "https://gitlab.com/tjvb/placephant/-/tree/master",
"issues-github": "https://github.com/TJVB/placephant/issues",
"source-github": "https://github.com/TJVB/placephant/tree/main"
},
"funding": [
{
"type": "paypal",
"url": "https://paypal.me/tvbeek"
},
{
"type": "github",
"url": "https://github.com/sponsors/tvbeek"
},
{
"type": "github",
"url": "https://github.com/sponsors/TJVB"
}
],
"require": {
"php": "~8.2.0",
"guzzlehttp/guzzle": "7.9.2",
"laravel/framework": "11.41.3",
"laravel/sanctum": "4.0.8",
"laravel/tinker": "2.10.1",
"league/glide-symfony": "2.0.1",
"sentry/sentry-laravel": "^4.0",
"tjvb/laravel-githash": "^1.4"
},
"require-dev": {
"deployer/deployer": "7.5.8",
"fakerphp/faker": "1.24.1",
"laravel/pint": "1.20.0",
"mockery/mockery": "1.6.12",
"nunomaduro/collision": "8.5.0",
"phpmd/phpmd": "2.15.0",
"phpunit/phpunit": "10.5.45",
"spatie/laravel-ignition": "2.9.0"
},
"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": {
"laravel": {
"dont-discover": []
}
},
"scripts": {
"post-update-cmd": [
"@php artisan vendor:publish --tag=laravel-assets --ansi --force"
],
"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"
],
"check-all": [
"@codestyle",
"@phpmd"
],
"codestyle": [
"@php vendor/bin/pint"
],
"phpmd": [
"@php vendor/bin/phpmd app/ text phpmd.xml.dist"
]
}
}