-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
112 lines (112 loc) · 3.41 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": "fruivita/arqjud",
"description": "Aplicação para controle de processos judiciais arquivados.",
"license": "MIT",
"type": "project",
"keywords": [
"framework",
"laravel",
"arquivo",
"processos",
"judicial"
],
"authors": [
{
"name": "Fábio Cassiano",
"email": "fcno.dev@gmail.com",
"homepage": "https://github.com/fcno",
"role": "Developer"
}
],
"homepage": "https://github.com/fruivita/arqjud",
"support": {
"email": "fruivita.code@gmail.com",
"issues": "https://github.com/fruivita/arqjud/issues",
"source": "https://github.com/fruivita/arqjud"
},
"require": {
"php": "^8.1",
"barryvdh/laravel-dompdf": "^2.0",
"directorytree/ldaprecord-laravel": "^2.7",
"fruivita/corporativo": "^3.0",
"fruivita/line-reader": "^1.0",
"guzzlehttp/guzzle": "^7.5",
"inertiajs/inertia-laravel": "^0.6",
"laravel/fortify": "^1.17",
"laravel/framework": "^9.52",
"laravel/sanctum": "^3.2",
"laravel/tinker": "^2.8",
"michael-rubel/laravel-enhanced-pipeline": "^3.2",
"spatie/laravel-activitylog": "^4.7",
"spatie/once": "^3.1",
"spatie/simple-excel": "^3.2",
"tightenco/ziggy": "^1.5"
},
"require-dev": {
"barryvdh/laravel-debugbar": "^3.8",
"druc/laravel-langscanner": "^2.1",
"ergebnis/composer-normalize": "^2.30",
"fakerphp/faker": "^1.21",
"jasonmccreary/laravel-test-assertions": "^2.3",
"laravel/pint": "^1.10",
"laravel/sail": "^1.21",
"mockery/mockery": "^1.5",
"nunomaduro/collision": "^6.4",
"nunomaduro/larastan": "^2.6",
"pestphp/pest": "^1.23",
"pestphp/pest-plugin-faker": "^1.0",
"pestphp/pest-plugin-laravel": "^1.4",
"phpstan/phpstan": "^1.10",
"phpstan/phpstan-deprecation-rules": "^1.1",
"phpunit/phpunit": "^9.6",
"spatie/laravel-ignition": "^1.6",
"spatie/pest-plugin-snapshots": "^1.1",
"spatie/pest-plugin-test-time": "^1.1"
},
"minimum-stability": "dev",
"prefer-stable": true,
"autoload": {
"psr-4": {
"App\\": "app/",
"Database\\Factories\\": "database/factories/",
"Database\\Seeders\\": "database/seeders/"
},
"files": [
"app/Helper.php"
]
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"config": {
"allow-plugins": {
"pestphp/pest-plugin": true,
"ergebnis/composer-normalize": 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"
]
}
}