-
Notifications
You must be signed in to change notification settings - Fork 76
/
Copy pathcomposer.json
117 lines (117 loc) · 3.72 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
113
114
115
116
117
{
"name": "owlchester/kanka",
"description": "The Kanka RPG and worldbuilding tool",
"keywords": [
"campaign",
"rpg",
"worldbuilding",
"kanka",
"dnd"
],
"license": "proprietary",
"type": "project",
"require": {
"php": "^8.3",
"ext-json": "*",
"ext-zip": "*",
"aws/aws-sdk-php": "^3.276",
"bacon/bacon-qr-code": "^2.0",
"binarytorch/larecipe": "^2.0",
"caseyamcl/toc": "^3.0",
"chriskonnertz/string-calc": "^1.0",
"dompdf/dompdf": "^3.0",
"enshrined/svg-sanitize": "^0.18.0",
"guzzlehttp/guzzle": "^7.0.1",
"http-interop/http-factory-guzzle": "^1.2",
"ilestis/kanka-dnd5e-monster": "^5.0",
"intervention/image": "^2.4",
"laravel/cashier": "^15.0",
"laravel/framework": "^11.0",
"laravel/pail": "^1.1",
"laravel/passport": "^12.0",
"laravel/scout": "^10.5",
"laravel/socialite": "^5.0",
"laravel/ui": "^4.2.1",
"league/flysystem-aws-s3-v3": "^3.5",
"league/html-to-markdown": "^5.1",
"livewire/livewire": "^3.4",
"mailerlite/mailerlite-php": "^1.0",
"mcamara/laravel-localization": "^2.0",
"meilisearch/meilisearch-php": "^1.4",
"orhanerday/open-ai": "^4.7",
"owlchester/laravel-translation-manager": "^11.0.3",
"pragmarx/google2fa-laravel": "^2.2",
"predis/predis": "^1.1",
"sentry/sentry-laravel": "^4.0",
"sergej-kurakin/diceroller": "^2.0",
"spatie/laravel-backup": "^8.0",
"srmklive/paypal": "^3.0",
"staudenmeir/laravel-adjacency-list": "^1.0",
"staudenmeir/laravel-cte": "^1.0",
"stechstudio/laravel-zipstream": "^4.13",
"stevebauman/purify": "6.2.*",
"symfony/http-client": "^7.1",
"symfony/mailgun-mailer": "^7.1"
},
"require-dev": {
"barryvdh/laravel-debugbar": "^3.1",
"barryvdh/laravel-ide-helper": "^3.0",
"fakerphp/faker": "^1.22",
"larastan/larastan": "^2.9",
"laravel/pint": "^1.10",
"laravel/sail": "^1.14",
"laravel/telescope": "^5.0",
"mockery/mockery": "^1.4.4",
"nunomaduro/collision": "^8.1",
"pestphp/pest": "^2.34",
"pestphp/pest-plugin-laravel": "^2.4",
"phpmd/phpmd": "^2.13",
"phpstan/phpstan": "^1.10",
"spatie/laravel-ignition": "^2.4",
"squizlabs/php_codesniffer": "^3.4"
},
"autoload": {
"psr-4": {
"App\\": "app/",
"Database\\Factories\\": "database/factories/",
"Database\\Seeders\\": "database/seeders/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"extra": {
"laravel": {
"dont-discover": [
"laravel/telescope"
]
}
},
"scripts": {
"phpcs": "phpcs --standard=phpcs.xml",
"post-root-package-install": [
"@php -r \"file_exists('.env') || copy('.env.example', '.env');\""
],
"post-create-project-cmd": [
"@php artisan key:generate"
],
"post-autoload-dump": [
"Illuminate\\Foundation\\ComposerScripts::postAutoloadDump",
"@php artisan package:discover"
],
"test:types": "phpstan analyse --ansi --memory-limit 1G",
"test:types-clear": "phpstan clear-result-cache",
"test:pest": "vendor/bin/pest"
},
"config": {
"preferred-install": "dist",
"sort-packages": true,
"optimize-autoloader": true,
"allow-plugins": {
"pestphp/pest-plugin": true,
"php-http/discovery": true
}
}
}