-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
85 lines (85 loc) · 2.47 KB
/
Copy pathcomposer.json
File metadata and controls
85 lines (85 loc) · 2.47 KB
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
{
"$schema": "https://getcomposer.org/schema.json",
"name": "outsanity/todo",
"description": "Old TODO Software",
"type": "project",
"license": "BSD-2-Clause",
"require": {
"php": "^8.3",
"laravel/framework": "^13.12.0",
"laravel/tinker": "^3.0.2"
},
"require-dev": {
"driftingly/rector-laravel": "^2.4",
"fakerphp/faker": "^1.24.1",
"fruitcake/laravel-debugbar": "^4.2.8",
"larastan/larastan": "^3.10.0",
"laravel/pail": "^1.2.7",
"mockery/mockery": "^1.6.12",
"nunomaduro/collision": "^8.9.4",
"outsanity/phpcs": "^1.1.0",
"phpunit/phpunit": "^12.5.28",
"rector/rector": "^2.4.5"
},
"config": {
"optimize-autoloader": true,
"platform": {
"php": "8.3.0"
},
"preferred-install": "dist",
"process-timeout": 0,
"sort-packages": true,
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"pestphp/pest-plugin": true,
"php-http/discovery": true
}
},
"autoload": {
"psr-4": {
"App\\": "app/",
"Database\\Factories\\": "database/factories/",
"Database\\Seeders\\": "database/seeders/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"scripts": {
"post-autoload-dump": [
"Illuminate\\Foundation\\ComposerScripts::postAutoloadDump",
"@php artisan package:discover --ansi"
],
"post-update-cmd": [
"@php artisan vendor:publish --tag=laravel-assets --ansi --force"
],
"post-root-package-install": [
"@php -r \"file_exists('.env') || copy('.env.example', '.env');\""
],
"post-create-project-cmd": [
"@php artisan key:generate --ansi",
"@php artisan migrate --graceful --ansi"
],
"pre-package-uninstall": [
"Illuminate\\Foundation\\ComposerScripts::prePackageUninstall"
],
"go": [
"php artisan optimize:clear",
"php artisan serve"
],
"phpcbf": "phpcbf",
"phpcs": "phpcs",
"phpstan": "phpstan analyse",
"rector": "rector --dry-run",
"test": "phpunit"
},
"extra": {
"laravel": {
"dont-discover": []
}
},
"minimum-stability": "stable",
"prefer-stable": true
}