2024-05-13 18:55:34 -04:00
{
2024-06-19 12:56:33 -04:00
"name" : "sp-tarkov/forge" ,
2024-05-13 18:55:34 -04:00
"type" : "project" ,
2024-06-19 12:56:33 -04:00
"description" : "A Laravel-based web application that provides a platform for the Single Player Tarkov community to share and discover user-generated content, such as mods, guides, and other tools." ,
"keywords" : [ ] ,
"license" : "MPL-2.0" ,
2024-05-13 18:55:34 -04:00
"require" : {
2024-05-14 00:09:13 -04:00
"php" : "^8.3" ,
2024-05-31 17:44:52 -04:00
"ext-curl" : "*" ,
2024-07-16 17:29:38 -04:00
"ext-intl" : "*" ,
2025-01-14 16:03:55 -05:00
"aws/aws-sdk-php" : "^3.336.15" ,
"composer/semver" : "^3.4.3" ,
"filament/filament" : "^3.2.133" ,
2024-06-02 22:03:59 -04:00
"http-interop/http-factory-guzzle" : "^1.2" ,
2025-01-14 16:03:55 -05:00
"laravel/framework" : "^11.38.1" ,
"laravel/horizon" : "^5.30.2" ,
"laravel/jetstream" : "^5.3.4" ,
"laravel/octane" : "^2.6" ,
"laravel/pulse" : "^1.3.3" ,
"laravel/sanctum" : "^4.0.7" ,
"laravel/scout" : "^10.12" ,
"laravel/socialite" : "^5.16.1" ,
"laravel/tinker" : "^2.10" ,
"league/flysystem-aws-s3-v3" : "^3.29" ,
"league/html-to-markdown" : "^5.1.1" ,
"livewire/livewire" : "^3.5.12" ,
"mchev/banhammer" : "^2.3.2" ,
"meilisearch/meilisearch-php" : "^1.12" ,
2024-09-26 16:55:44 -04:00
"socialiteproviders/discord" : "^4.2" ,
2025-01-14 16:03:55 -05:00
"stevebauman/purify" : "^6.2.2"
2024-05-13 18:55:34 -04:00
} ,
"require-dev" : {
2025-01-14 16:03:55 -05:00
"barryvdh/laravel-debugbar" : "^3.14.10" ,
"fakerphp/faker" : "^1.24.1" ,
"knuckleswtf/scribe" : "^4.39" ,
"larastan/larastan" : "^3.0.2" ,
"laravel/pint" : "^1.20" ,
"laravel/sail" : "^1.40" ,
"mockery/mockery" : "^1.6.12" ,
"nunomaduro/collision" : "^8.5" ,
"pestphp/pest" : "^3.7.1" ,
"rector/rector" : "^2.0.6" ,
"spatie/laravel-ignition" : "^2.9"
2024-05-13 18:55:34 -04:00
} ,
"autoload" : {
"psr-4" : {
"App\\" : "app/" ,
"Database\\Factories\\" : "database/factories/" ,
"Database\\Seeders\\" : "database/seeders/"
2024-05-24 17:06:02 -04:00
}
2024-05-13 18:55:34 -04:00
} ,
"autoload-dev" : {
"psr-4" : {
"Tests\\" : "tests/"
}
} ,
"scripts" : {
2024-07-03 17:47:02 -04:00
"phpstan" : [
2024-08-01 17:16:28 -04:00
"./vendor/bin/phpstan analyse --configuration phpstan.neon --error-format=table --memory-limit=2G"
2024-07-03 17:47:02 -04:00
] ,
2024-05-13 18:55:34 -04:00
"post-autoload-dump" : [
"Illuminate\\Foundation\\ComposerScripts::postAutoloadDump" ,
2024-06-27 00:19:18 -04:00
"@php artisan package:discover --ansi" ,
"@php artisan filament:upgrade"
2024-05-13 18:55:34 -04:00
] ,
"post-update-cmd" : [
2024-06-19 14:03:36 -04:00
"@php artisan vendor:publish --tag=laravel-assets --ansi --force" ,
"@php artisan vendor:publish --tag=livewire:assets --ansi --force"
2024-05-13 18:55:34 -04:00
] ,
"post-root-package-install" : [
"@php -r \"file_exists('.env') || copy('.env.example', '.env');\""
] ,
"post-create-project-cmd" : [
"@php artisan key:generate --ansi" ,
"@php -r \"file_exists('database/database.sqlite') || touch('database/database.sqlite');\"" ,
"@php artisan migrate --graceful --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
2024-06-11 21:36:58 -04:00
} ,
"platform" : {
"ext-pcntl" : "8.0" ,
"ext-posix" : "8.0"
2024-05-13 18:55:34 -04:00
}
} ,
"minimum-stability" : "stable" ,
"prefer-stable" : true
}