forked from owlchester/kanka
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
100 lines (100 loc) · 3.1 KB
/
Copy pathcomposer.json
File metadata and controls
100 lines (100 loc) · 3.1 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
97
98
99
100
{
"name": "owlchester/kanka",
"description": "The Kanka RPG and worldbuilding tool",
"keywords": [
"campaign",
"rpg",
"worldbuilding",
"kanka",
"dnd"
],
"license": "MIT",
"type": "project",
"require": {
"php": "^8.1",
"ext-json": "*",
"ext-zip": "*",
"bacon/bacon-qr-code": "^2.0",
"binarytorch/larecipe": "^2.0",
"blueimp/jquery-file-upload": "^9.23",
"caseyamcl/toc": "^3.0",
"chriskonnertz/string-calc": "^1.0",
"enshrined/svg-sanitize": "^0.15.0",
"fruitcake/laravel-cors": "^2.0",
"guzzlehttp/guzzle": "^7.0.1",
"ilestis/kanka-dnd5e-monster": "^4.2",
"intervention/image": "^2.4",
"kalnoy/nestedset": "^6.0",
"laravel/cashier": "^12.0",
"laravel/framework": "^9.0",
"laravel/passport": "^10.0",
"laravel/socialite": "^5.0",
"laravel/ui": "^3.0",
"laravelcollective/html": "^6.0",
"league/flysystem-aws-s3-v3": "^3.5",
"mcamara/laravel-localization": "^1.7",
"owlchester/laravel-translation-manager": "^9.0",
"pragmarx/google2fa-laravel": "^2.0",
"predis/predis": "^1.1",
"richan-fongdasen/eloquent-blameable": "^1.6",
"sentry/sentry-laravel": "^2.8",
"sergej-kurakin/diceroller": "^2.0",
"spatie/laravel-backup": "^8.0",
"spatie/laravel-feed": "^4.0",
"spatie/laravel-newsletter": "^4.8",
"stevebauman/purify": "^4.0",
"symfony/http-client": "^6.1",
"symfony/mailgun-mailer": "^6.1"
},
"require-dev": {
"barryvdh/laravel-debugbar": "^3.1",
"laravel/sail": "^1.14",
"mockery/mockery": "^1.4.4",
"nunomaduro/larastan": "^2.2",
"pestphp/pest": "^1.21",
"pestphp/pest-plugin-laravel": "^1.3",
"phpunit/phpunit": "^9.5.10",
"spatie/laravel-ignition": "^1.5",
"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": []
}
},
"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"
},
"config": {
"preferred-install": "dist",
"sort-packages": true,
"optimize-autoloader": true,
"allow-plugins": {
"pestphp/pest-plugin": true
}
}
}