hypothetical/composer.json

74 lines
2.1 KiB
JSON
Raw Normal View History

{
2023-07-13 17:09:38 -04:00
"name": "hypothetical/hypothetical",
2019-03-19 17:40:13 -04:00
"type": "project",
2023-07-13 17:09:38 -04:00
"description": "The Hypothetical Template",
"keywords": ["hypothetical", "template"],
"license": "MIT",
"require": {
2023-03-13 17:33:19 -04:00
"php": "^8.1",
"doctrine/dbal": "^3.6.1",
2022-05-23 21:01:33 -04:00
"erusev/parsedown": "^1.7.4",
"guzzlehttp/guzzle": "^7.2",
"intervention/image": "^2.7.2",
2023-07-13 17:09:38 -04:00
"laravel/framework": "^10.10",
2023-03-13 17:33:19 -04:00
"laravel/helpers": "^1.6",
2024-01-12 22:03:27 -05:00
"laravel/sanctum": "^3.3",
2023-03-13 17:33:19 -04:00
"laravel/tinker": "^2.8",
"laravel/ui": "^4.2.1",
"phpoffice/phpspreadsheet": "^1.28.0",
"spatie/laravel-newsletter": "^5.1.1"
},
"require-dev": {
"fakerphp/faker": "^1.9.1",
2022-10-11 18:14:02 -04:00
"laravel/pint": "^1.0",
2023-03-13 17:33:19 -04:00
"laravel/sail": "^1.18",
2022-05-23 21:01:33 -04:00
"mockery/mockery": "^1.4.4",
2023-03-13 17:33:19 -04:00
"nunomaduro/collision": "^7.0",
2023-05-05 15:31:58 -04:00
"phpunit/phpunit": "^10.1",
2023-03-13 17:33:19 -04:00
"spatie/laravel-ignition": "^2.0"
2019-03-19 17:40:13 -04:00
},
"autoload": {
2019-03-19 17:40:13 -04:00
"psr-4": {
"App\\": "app/",
"Database\\Factories\\": "database/factories/",
"Database\\Seeders\\": "database/seeders/"
}
},
"autoload-dev": {
2017-01-26 19:17:37 -05:00
"psr-4": {
"Tests\\": "tests/"
}
},
"scripts": {
2019-03-19 17:40:13 -04:00
"post-autoload-dump": [
"Illuminate\\Foundation\\ComposerScripts::postAutoloadDump",
"@php artisan package:discover --ansi"
],
2021-08-03 17:15:07 -04:00
"post-update-cmd": [
2022-05-23 21:01:33 -04:00
"@php artisan vendor:publish --tag=laravel-assets --ansi --force"
2021-08-03 17:15:07 -04:00
],
"post-root-package-install": [
"@php -r \"file_exists('.env') || copy('.env.example', '.env');\""
],
"post-create-project-cmd": [
"@php artisan key:generate --ansi"
]
2021-04-20 17:11:13 -04:00
},
"extra": {
"laravel": {
"dont-discover": []
}
},
"config": {
"optimize-autoloader": true,
"preferred-install": "dist",
2022-10-11 18:14:02 -04:00
"sort-packages": true,
"allow-plugins": {
2023-03-13 17:33:19 -04:00
"pestphp/pest-plugin": true,
"php-http/discovery": true
2022-10-11 18:14:02 -04:00
}
2021-04-20 17:11:13 -04:00
},
2023-03-13 17:33:19 -04:00
"minimum-stability": "stable",
2021-04-20 17:11:13 -04:00
"prefer-stable": true
}