generated from ergebnis/php-package-template
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
111 lines (111 loc) · 3.01 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
{
"name": "ergebnis/laravel-application-template",
"description": "Provides a GitHub template repository for a Laravel application, using GitHub Actions.",
"license": "MIT",
"type": "project",
"keywords": [
"laravel",
"framework"
],
"authors": [
{
"name": "Andreas Möller",
"email": "[email protected]",
"homepage": "https://localheinz.com"
}
],
"support": {
"issues": "https://github.com/ergebnis/laravel-application-template/issues",
"source": "https://github.com/ergebnis/laravel-application-template",
"security": "https://github.com/ergebnis/laravel-application-template/blob/main/.github/SECURITY.md"
},
"require": {
"php": "~8.3.0",
"ext-ctype": "*",
"ext-iconv": "*",
"ext-intl": "*",
"ext-mbstring": "*",
"ext-pdo": "*",
"ext-pdo_mysql": "*",
"guzzlehttp/guzzle": "^7.9.2",
"laravel/framework": "^10.48.23",
"laravel/sanctum": "^3.3.3",
"laravel/tinker": "^2.10.0",
"symfony/http-foundation": "^6.4.8"
},
"require-dev": {
"ergebnis/composer-normalize": "^2.44.0",
"ergebnis/data-provider": "^3.3.0",
"ergebnis/phpunit-slow-test-detector": "^2.16.1",
"fakerphp/faker": "^1.24.0",
"infection/infection": "~0.27.11",
"laravel/pint": "^1.18.1",
"laravel/sail": "^1.38.0",
"mockery/mockery": "^1.6.12",
"nunomaduro/collision": "^7.10.0",
"phpunit/phpunit": "^10.5.27",
"psalm/plugin-laravel": "^2.11.0",
"psalm/plugin-phpunit": "~0.19.0",
"rector/rector": "~1.2.10",
"spatie/laravel-ignition": "^2.8.0",
"vimeo/psalm": "^5.26.1"
},
"replace": {
"symfony/polyfill-ctype": "*",
"symfony/polyfill-iconv": "*",
"symfony/polyfill-intl-grapheme": "*",
"symfony/polyfill-intl-idn": "*",
"symfony/polyfill-intl-normalizer": "*",
"symfony/polyfill-mbstring": "*",
"symfony/polyfill-php72": "*",
"symfony/polyfill-php80": "*"
},
"minimum-stability": "stable",
"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": {
"ergebnis/composer-normalize": true,
"infection/extension-installer": true,
"pestphp/pest-plugin": true,
"php-http/discovery": true
},
"audit": {
"abandoned": "report"
},
"optimize-autoloader": true,
"platform": {
"php": "8.3.2"
},
"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');\""
]
}
}