-
Notifications
You must be signed in to change notification settings - Fork 26
/
Copy pathcomposer.json
executable file
·110 lines (110 loc) · 3.51 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
{
"name": "roskus/prospect-flow-crm",
"description": "ProspectFlow CRM based in The Laravel Framework.",
"keywords": [
"crm",
"framework",
"laravel"
],
"license": "MIT",
"type": "project",
"require": {
"php": "^8.2",
"ext-gd": "*",
"ext-intl": "*",
"ext-bcmath": "*",
"aws/aws-sdk-php": "^3.234",
"barryvdh/laravel-dompdf": "^3.0.0",
"barryvdh/laravel-snappy": "^1.0.3",
"darkaonline/l5-swagger": "^8.6.3",
"dompdf/dompdf": "^3.0.2",
"egulias/email-validator": "^4.0.3",
"giggsey/libphonenumber-for-php": "^8.13",
"guzzlehttp/guzzle": "^7.9.2",
"h4cc/wkhtmltoimage-amd64": "0.12.x",
"h4cc/wkhtmltoimage-i386": "0.12.x",
"h4cc/wkhtmltopdf-amd64": "0.12.x",
"h4cc/wkhtmltopdf-i386": "0.12.x",
"intervention/validation": "^4.1",
"laravel/framework": "^11.37",
"laravel/helpers": "^1.7",
"laravel/sanctum": "^4.0",
"laravel/tinker": "^2.10",
"laravel/ui": "^4.5",
"larswiegers/laravel-translations-checker": "^0.9.1",
"maatwebsite/excel": "^3.1",
"moneyphp/money": "^4.6",
"nesbot/carbon": "^3.8.4",
"php-open-source-saver/jwt-auth": "^2.7.3",
"psr/simple-cache": "^2.0",
"ramsey/uuid": "^4.7",
"sentry/sentry-laravel": "^4.10.2",
"shopify/shopify-api": "^v4.3.0",
"spatie/icalendar-generator": "^2.9.0",
"spatie/laravel-permission": "^6.10.1",
"squirephp/continents-en": "^3.7",
"squirephp/countries-en": "^3.7",
"squirephp/countries-es": "^3.7",
"squirephp/currencies-en": "^3.7",
"squirephp/regions-en": "^3.7",
"yajra/laravel-auditable": "^11"
},
"require-dev": {
"fakerphp/faker": "^1.24.1",
"barryvdh/laravel-debugbar": "^3.14.10",
"friendsofphp/php-cs-fixer": "^3.66.1",
"larastan/larastan": "^v2.9.12",
"laravel/pint": "^1.19",
"marcocesarato/php-conventional-changelog": "^1.17.2",
"mockery/mockery": "^1.6",
"nunomaduro/collision": "^8.1",
"phpstan/phpstan": "^1.10",
"phpunit/phpunit": "^11.0.1",
"rector/rector": "^1.2.4",
"spatie/laravel-ignition": "^2.0",
"squizlabs/php_codesniffer": "^3.7"
},
"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"
]
},
"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
}