107 lines
3.6 KiB
JSON
107 lines
3.6 KiB
JSON
{
|
|
"$schema": "https://getcomposer.org/schema.json",
|
|
"name": "jonnybarnes/jonnybarnes.uk",
|
|
"type": "project",
|
|
"description": "The code for jonnybarnes.uk, based on Laravel 11",
|
|
"keywords": ["laravel", "framework", "indieweb"],
|
|
"license": "CC0-1.0",
|
|
"require": {
|
|
"php": "^8.2",
|
|
"ext-dom": "*",
|
|
"ext-intl": "*",
|
|
"ext-json": "*",
|
|
"ext-pgsql": "*",
|
|
"ext-sodium": "*",
|
|
"cviebrock/eloquent-sluggable": "^12.0",
|
|
"guzzlehttp/guzzle": "^7.2",
|
|
"indieauth/client": "^1.1",
|
|
"intervention/image": "^3",
|
|
"jonnybarnes/indieweb": "~0.2",
|
|
"jonnybarnes/webmentions-parser": "~0.5",
|
|
"jublonet/codebird-php": "4.0.0-beta.1",
|
|
"laravel/framework": "^12.0",
|
|
"laravel/horizon": "^5.0",
|
|
"laravel/sanctum": "^4.0",
|
|
"laravel/scout": "^10.1",
|
|
"laravel/tinker": "^2.8",
|
|
"lcobucci/jwt": "^5.0",
|
|
"league/commonmark": "^2.0",
|
|
"league/flysystem-aws-s3-v3": "^3.0",
|
|
"mf2/mf2": "~0.3",
|
|
"phpdocumentor/reflection-docblock": "^5.3",
|
|
"spatie/commonmark-highlighter": "^3.0",
|
|
"spatie/laravel-ignition": "^2.1",
|
|
"symfony/html-sanitizer": "^7.0",
|
|
"symfony/property-access": "^7.0",
|
|
"symfony/serializer": "^7.0",
|
|
"web-auth/webauthn-lib": "^5.0"
|
|
},
|
|
"require-dev": {
|
|
"barryvdh/laravel-debugbar": "^3.0",
|
|
"barryvdh/laravel-ide-helper": "^3.0",
|
|
"fakerphp/faker": "^1.9.2",
|
|
"laravel/dusk": "^8.0",
|
|
"laravel/pail": "^1.2",
|
|
"laravel/pint": "^1.0",
|
|
"laravel/sail": "^1.18",
|
|
"mockery/mockery": "^1.4.4",
|
|
"nunomaduro/collision": "^8.1",
|
|
"openai-php/client": "^0.10.1",
|
|
"phpunit/php-code-coverage": "^11.0",
|
|
"phpunit/phpunit": "^11.0",
|
|
"spatie/laravel-ray": "^1.12"
|
|
},
|
|
"autoload": {
|
|
"psr-4": {
|
|
"App\\": "app/",
|
|
"Database\\Factories\\": "database/factories/",
|
|
"Database\\Seeders\\": "database/seeders/"
|
|
},
|
|
"files": [
|
|
"helpers.php"
|
|
]
|
|
},
|
|
"autoload-dev": {
|
|
"psr-4": {
|
|
"Tests\\": "tests/"
|
|
}
|
|
},
|
|
"scripts": {
|
|
"post-autoload-dump": [
|
|
"Illuminate\\Foundation\\ComposerScripts::postAutoloadDump",
|
|
"@php artisan package:discover --ansi"
|
|
],
|
|
"post-update-cmd": [
|
|
"@php artisan vendor:publish --tag=laravel-assets --ansi --force"
|
|
],
|
|
"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"
|
|
],
|
|
"dev": [
|
|
"Composer\\Config::disableProcessTimeout",
|
|
"npx concurrently -c \"#93c5fd,#c4b5fd,#fb7185,#fdba74\" \"php artisan serve\" \"php artisan queue:listen --tries=1\" \"php artisan pail --timeout=0\" \"npm run dev\" --names=server,queue,logs,vite"
|
|
]
|
|
},
|
|
"extra": {
|
|
"laravel": {
|
|
"dont-discover": []
|
|
}
|
|
},
|
|
"config": {
|
|
"optimize-autoloader": true,
|
|
"preferred-install": "dist",
|
|
"sort-packages": true,
|
|
"allow-plugins": {
|
|
"pestphp/pest-plugin": true,
|
|
"php-http/discovery": true,
|
|
"composer/installers": true
|
|
}
|
|
},
|
|
"minimum-stability": "stable",
|
|
"prefer-stable": true
|
|
}
|