You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
73 lines
2.1 KiB
73 lines
2.1 KiB
{ |
|
"name": "laravel/laravel", |
|
"type": "project", |
|
"description": "The skeleton application for the Laravel framework.", |
|
"keywords": ["laravel", "framework"], |
|
"license": "MIT", |
|
"require": { |
|
"php": "^8.1", |
|
"bacon/bacon-qr-code": "^2.0", |
|
"barryvdh/laravel-dompdf": "^2.0", |
|
"guzzlehttp/guzzle": "^7.2", |
|
"laravel/framework": "^10.10", |
|
"laravel/sanctum": "^3.2", |
|
"laravel/tinker": "^2.8", |
|
"maatwebsite/excel": "^3.1", |
|
"php-open-source-saver/jwt-auth": "^2.1", |
|
"simplesoftwareio/simple-qrcode": "^4.2", |
|
"tymon/jwt-auth": "^2.0" |
|
}, |
|
"require-dev": { |
|
"fakerphp/faker": "^1.9.1", |
|
"laravel/breeze": "^1.23", |
|
"laravel/pint": "^1.0", |
|
"laravel/sail": "^1.18", |
|
"mockery/mockery": "^1.4.4", |
|
"nunomaduro/collision": "^7.0", |
|
"phpunit/phpunit": "^10.1", |
|
"spatie/laravel-ignition": "^2.0" |
|
}, |
|
"autoload": { |
|
"psr-4": { |
|
"App\\": "app/", |
|
"Database\\Factories\\": "database/factories/", |
|
"Database\\Seeders\\": "database/seeders/" |
|
} |
|
}, |
|
"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" |
|
] |
|
}, |
|
"extra": { |
|
"laravel": { |
|
"dont-discover": [] |
|
} |
|
}, |
|
"config": { |
|
"optimize-autoloader": true, |
|
"preferred-install": "dist", |
|
"sort-packages": true, |
|
"allow-plugins": { |
|
"pestphp/pest-plugin": true, |
|
"php-http/discovery": true |
|
} |
|
}, |
|
"minimum-stability": "stable", |
|
"prefer-stable": true |
|
}
|
|
|