-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
116 lines (116 loc) · 3.67 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
{
"name": "kantorge/yaffa",
"description": "Yet Another Free Financial Application: a free, self-hosted personal finance app",
"version": "1.12.3",
"type": "project",
"keywords": [
"personal finance",
"laravel",
"yaffa"
],
"license": "MIT",
"require": {
"php": "^8.3",
"beyondcode/laravel-mailbox": "^3.1",
"biscolab/laravel-recaptcha": "^6.0",
"bkwld/cloner": "^3.11",
"diglactic/laravel-breadcrumbs": "^9.0",
"enlightn/enlightn": "^2.1",
"fakerphp/faker": "^1.13",
"guzzlehttp/guzzle": "^7.0.1",
"kantorge/laravel-currency-exchange-rates": "^0.0.3",
"laracasts/utilities": "^3.2",
"laravel/framework": "^10.0",
"laravel/sanctum": "^3.3",
"laravel/ui": "^4.2",
"nesbot/carbon": "^2.40",
"openai-php/laravel": "^0.8.1",
"roach-php/laravel": "^3.1",
"sentry/sentry-laravel": "^4.1",
"simshaun/recurr": "^5.0",
"spatie/laravel-model-flags": "^1.1",
"spatie/laravel-onboard": "^2.4",
"symfony/http-client": "^6.3",
"tightenco/ziggy": "^1.3"
},
"require-dev": {
"alebatistella/duskapiconf": "^1.2",
"barryvdh/laravel-debugbar": "^3.5",
"barryvdh/laravel-ide-helper": "^2.12",
"deployer/deployer": "^7.3",
"imanghafoori/laravel-microscope": "^1.0",
"kkomelin/laravel-translatable-string-exporter": "^1.17",
"larastan/larastan": "^2.0",
"laravel/dusk": "^8.2",
"laravel/pint": "^1.1",
"laravel/sail": "^1.16",
"laravel/telescope": "^4.6",
"laravel/tinker": "^2.5",
"mockery/mockery": "^1.4.2",
"nikaia/translation-sheet": "dev-feature/config_empty_behavior",
"nunomaduro/collision": "^7.0",
"nunomaduro/phpinsights": "^2.0",
"phpunit/phpunit": "^10.0",
"roquie/laravel-dusk-select2": "dev-feature/search_selector_delay",
"spatie/laravel-ignition": "^2.0"
},
"config": {
"discard-changes": true,
"optimize-autoloader": true,
"preferred-install": "dist",
"sort-packages": true,
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"php-http/discovery": true
}
},
"extra": {
"laravel": {
"dont-discover": [
"laravel/telescope"
]
}
},
"autoload": {
"psr-4": {
"App\\": "app/"
}
},
"autoload-dev": {
"psr-4": {
"App\\": "app/",
"Database\\Factories\\": "database/factories/",
"Database\\Seeders\\": "database/seeders/",
"Tests\\": "tests/"
}
},
"prefer-stable": true,
"scripts": {
"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"
],
"post-update-cmd": [
"@php artisan ide-helper:generate",
"@php artisan ide-helper:meta",
"@php artisan telescope:publish --ansi",
"Illuminate\\Foundation\\ComposerScripts::postUpdate"
]
},
"repositories": [
{
"type": "vcs",
"url": "https://github.com/kantorge/translation-sheet"
},
{
"type": "vcs",
"url": "https://github.com/kantorge/laravel-dusk-select2"
}
]
}