-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
executable file
·95 lines (95 loc) · 2.77 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
{
"name": "chieftools/pkgtrends",
"description": "A quick way to compare package downloads across languages.",
"keywords": [
"package",
"trends",
"packagist",
"npm",
"pypi",
"hex",
"wordpress"
],
"license": "proprietary",
"type": "project",
"require": {
"php": "^8.3",
"aws/aws-sdk-php": "^3.324",
"google/cloud-bigquery": "1.31.*",
"guzzlehttp/guzzle": "7.9.*",
"laracasts/utilities": "3.2.*",
"laravel/framework": "11.41.*",
"laravel/helpers": "1.7.*",
"laravel/horizon": "5.30.*",
"laravel/tinker": "2.10.*",
"sentry/sentry-laravel": "4.11.*",
"statview/satellite": "1.3.*",
"stayallive/laravel-eloquent-uuid": "1.0.*"
},
"require-dev": {
"barryvdh/laravel-debugbar": "3.14.*",
"barryvdh/laravel-ide-helper": "3.5.*",
"friendsofphp/php-cs-fixer": "3.68.*",
"larastan/larastan": "3.0.*",
"nunomaduro/collision": "8.6.*",
"wnx/laravel-stats": "2.14.*"
},
"replace": {
"symfony/polyfill-php70": "*",
"symfony/polyfill-php71": "*",
"symfony/polyfill-php72": "*",
"symfony/polyfill-php73": "*",
"symfony/polyfill-php74": "*",
"symfony/polyfill-php80": "*",
"symfony/polyfill-php81": "*",
"symfony/polyfill-php82": "*",
"symfony/polyfill-php83": "*"
},
"autoload": {
"psr-4": {
"ChiefTools\\Pkgtrends\\": "app/"
},
"files": [
"app/helpers.php"
]
},
"scripts": {
"post-update-cmd": [
"Illuminate\\Foundation\\ComposerScripts::postUpdate",
"@generate:ide"
],
"post-autoload-dump": [
"Illuminate\\Foundation\\ComposerScripts::postAutoloadDump",
"@php artisan package:discover"
],
"cs": [
"@phpcs",
"yarn prettier"
],
"ide": "@generate:ide",
"stan": "@phpstan",
"check": [
"@phpcs",
"@phpstan"
],
"phpcs": "vendor/bin/php-cs-fixer fix",
"phpcs:ci": "vendor/bin/php-cs-fixer fix --dry-run --diff",
"phpstan": "vendor/bin/phpstan analyse --memory-limit=2G",
"phpstan:ci": "vendor/bin/phpstan analyse --memory-limit=2G --error-format=github",
"generate:ide": [
"@php artisan ide-helper:meta"
]
},
"config": {
"platform": {
"php": "8.3.0"
},
"allow-plugins": {
"php-http/discovery": false,
"composer/package-versions-deprecated": true
},
"sort-packages": true,
"preferred-install": "dist",
"optimize-autoloader": true
}
}