tethys/composer.json

76 lines
1.6 KiB
JSON
Raw Normal View History

2015-07-19 06:49:24 +00:00
{
"name": "laravel/laravel",
"description": "The Laravel Framework.",
2018-08-06 12:30:51 +00:00
"keywords": [
"framework",
"laravel"
],
2015-07-19 06:49:24 +00:00
"license": "MIT",
"type": "project",
"require": {
"php": "^7.2",
"arifhp86/laravel-clear-expired-cache-file": "^0.0.4",
"astrotomic/laravel-translatable": "^11.1",
2019-02-12 11:21:35 +00:00
"davejamesmiller/laravel-breadcrumbs": "5.x",
2018-11-08 16:47:27 +00:00
"felixkiss/uniquewith-validator": "^3.1",
2019-02-12 11:21:35 +00:00
"fideloper/proxy": "^4.0",
"laravel/framework": "^6.0",
2019-02-12 11:21:35 +00:00
"laravel/tinker": "^1.0",
"laravelcollective/html": "^6.1",
2018-11-21 12:40:34 +00:00
"mcamara/laravel-localization": "^1.3",
2018-08-31 14:47:04 +00:00
"solarium/solarium": "^3.8",
2019-10-21 16:37:08 +00:00
"yajra/laravel-datatables-oracle": "^9.0",
"halpdesk/zizaco-entrust-laravel-6.0": "^1.9"
2015-07-19 06:49:24 +00:00
},
"require-dev": {
2018-09-06 15:58:54 +00:00
"fzaninotto/faker": "^1.8",
"phpunit/phpunit": "^7.0"
2015-07-19 06:49:24 +00:00
},
"autoload": {
2018-11-21 12:40:34 +00:00
"files": [
"app/Helpers/utils.php",
"app/Constants/constants.php"
2018-11-21 12:40:34 +00:00
],
2015-07-19 06:49:24 +00:00
"classmap": [
2018-08-06 12:30:51 +00:00
"database/seeds",
2018-09-10 13:09:10 +00:00
"database/factories"
2015-07-19 06:49:24 +00:00
],
"psr-4": {
"App\\": "app/"
}
},
"autoload-dev": {
2019-10-21 16:37:08 +00:00
"psr-4": {
"Tests\\": "tests/"
}
2015-07-19 06:49:24 +00:00
},
"scripts": {
"post-install-cmd": [
2019-10-21 16:37:08 +00:00
"@php artisan clear-compiled"
],
2015-07-19 06:49:24 +00:00
"post-create-project-cmd": [
"php -r \"copy('.env.example', '.env');\"",
2019-10-21 16:37:08 +00:00
"@php artisan key:generate --ansi"
2018-08-31 14:47:04 +00:00
],
"post-autoload-dump": [
2019-10-21 16:37:08 +00:00
"Illuminate\\Foundation\\ComposerScripts::postAutoloadDump",
"@php artisan package:discover --ansi"
]
2015-07-19 06:49:24 +00:00
},
"config": {
2018-08-06 12:30:51 +00:00
"preferred-install": "dist",
"sort-packages": true,
"optimize-autoloader": true
},
"authors": [
{
"name": "Arno Kaimbacher",
"email": "arno.kaimbacher@geologie.ac.at",
"role": "Developer"
}
],
2018-09-10 13:09:10 +00:00
"minimum-stability": "dev",
2018-08-06 12:30:51 +00:00
"prefer-stable": true,
"homepage": "https://www.geologie.ac.at/"
2015-07-19 06:49:24 +00:00
}