-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathcomposer.json
More file actions
84 lines (84 loc) · 2.67 KB
/
composer.json
File metadata and controls
84 lines (84 loc) · 2.67 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
{
"name": "power-components/powergrid-demo",
"type": "project",
"description": "Livewire PowerGrid demo",
"homepage": "https://demo.livewire-powergrid.com",
"keywords": [
"laravel", "livewire", "powergrid"
],
"license": "MIT",
"require": {
"php": "^8.3",
"fakerphp/faker": "^1.24.1",
"laravel/framework": "^13.0",
"laravel/tinker": "^3.0",
"openspout/openspout": "^4.29.1",
"picqer/php-barcode-generator": "^2.4.2",
"power-components/livewire-powergrid": "^6.0",
"predis/predis": "^2.3.0",
"spatie/shiki-php": "^2.3.2",
"stevebauman/purify": "^6.3"
},
"require-dev": {
"composer/composer": "^2.8.6",
"laradumps/laradumps": "^5.0",
"laravel/pail": "^1.2.2",
"laravel/pint": "^1.24",
"laravel/sail": "^1.41.0",
"mockery/mockery": "^1.6.12",
"nunomaduro/collision": "^8.7.0",
"pestphp/pest": "^4.0",
"pestphp/pest-plugin-browser": "^4.3",
"pestphp/pest-plugin-laravel": "^4.0",
"spatie/laravel-ignition": "^2.9.1"
},
"autoload": {
"files": ["bootstrap/Helpers.php"],
"psr-4": {
"App\\": "app/",
"Database\\Factories\\": "database/factories/",
"Database\\Seeders\\": "database/seeders/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"scripts": {
"test:pint": "./vendor/bin/pint --test",
"test:feature": ["@php artisan config:clear --ansi", "./vendor/bin/pest --order-by random"],
"tests": [
"@test:pint",
"@test:feature"
],
"pint:fix": "./vendor/bin/pint",
"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 -r \"file_exists('database/database.sqlite') || touch('database/database.sqlite');\"", "@php artisan migrate --graceful --ansi"
],
"dev": [
"Composer\\Config::disableProcessTimeout", "npx concurrently -c \"#93c5fd,#c4b5fd,#fb7185,#fdba74\" \"php artisan serve\" \"php artisan queue:listen --tries=1\" \"php artisan pail --timeout=0\" \"npm run dev\" --names=server,queue,logs,vite --kill-others"
]
},
"extra": {
"laravel": {
"dont-discover": []
}
},
"config": {
"optimize-autoloader": true,
"preferred-install": "dist",
"sort-packages": true,
"allow-plugins": {
"pestphp/pest-plugin": true,
"php-http/discovery": true
}
},
"minimum-stability": "stable",
"prefer-stable": true
}