-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
96 lines (96 loc) · 2.69 KB
/
Copy pathcomposer.json
File metadata and controls
96 lines (96 loc) · 2.69 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
86
87
88
89
90
91
92
93
94
95
96
{
"$schema": "https://getcomposer.org/schema.json",
"name": "newfoundcodes/okatana",
"type": "project",
"description": "Okatana project management system built with Laravel and React.",
"keywords": [
"laravel",
"react",
"project-management",
"kanban"
],
"license": "AGPL-3.0-or-later",
"require": {
"bacon/bacon-qr-code": "^3.1",
"dompdf/dompdf": "^3.1",
"ext-dom": "*",
"ext-gd": "*",
"ext-json": "*",
"ext-openssl": "*",
"ext-pdo": "*",
"ext-xmlwriter": "*",
"laravel/framework": "^13.17",
"laravel/tinker": "^3.0",
"php": "^8.3",
"pragmarx/google2fa": "^9.0",
"scalar/laravel": "^0.2.1",
"spatie/laravel-pdf": "^2.12"
},
"require-dev": {
"fakerphp/faker": "^1.23",
"laravel/pint": "^1.30",
"mockery/mockery": "^1.6",
"nunomaduro/collision": "^8.6",
"phpunit/phpunit": "^12.5.12"
},
"autoload": {
"psr-4": {
"App\\": "app/",
"Database\\Factories\\": "database/factories/",
"Database\\Seeders\\": "database/seeders/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"scripts": {
"setup": [
"composer install",
"@php -r \"file_exists('.env') || copy('.env.example', '.env');\"",
"@php artisan key:generate",
"@php -r \"file_exists('database/database.sqlite') || touch('database/database.sqlite');\"",
"@php artisan migrate --force",
"npm install --ignore-scripts",
"npm run build"
],
"dev": [
"Composer\\Config::disableProcessTimeout",
"@docs:build",
"@frontend:build",
"npx concurrently -c auto \"php artisan serve\" \"php artisan queue:work --tries=3\" \"npm run dev\" --names=server,queue,vite"
],
"docs:build": ".venv-docs/bin/mkdocs build --strict",
"frontend:build": "npm run build",
"serve": [
"Composer\\Config::disableProcessTimeout",
"@docs:build",
"@frontend:build",
"@php artisan serve"
],
"test": [
"@php artisan config:clear --ansi",
"@php artisan test"
],
"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",
"@php -r \"file_exists('database/database.sqlite') || touch('database/database.sqlite');\"",
"@php artisan migrate --graceful --ansi"
]
},
"config": {
"optimize-autoloader": true,
"preferred-install": "dist",
"sort-packages": true
},
"minimum-stability": "stable",
"prefer-stable": true
}