Permalink
Cannot retrieve contributors at this time
Name already in use
A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
CyberTraining/composer.json
Go to fileThis commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
94 lines (94 sloc)
3 KB
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"name": "purduercac/halcyon", | |
"type": "project", | |
"description": "The Halcyon HPC resource allocation portal.", | |
"keywords": ["cms", "halcyon", "laravel", "hpc"], | |
"license": "Purdue University Open Source License", | |
"require": { | |
"php": "^8.0.2", | |
"adldap2/adldap2": "^10.4.3", | |
"apereo/phpcas": "^1.6.0", | |
"cilogon/oauth2-cilogon": "^1.1.6", | |
"doctrine/dbal": "^3.5", | |
"doctrine/rst-parser": "^0.5.5", | |
"guzzlehttp/guzzle": "^7.2", | |
"inertiajs/inertia-laravel": "*", | |
"james-heinrich/getid3": "^1.9", | |
"jenssegers/agent": "^2.6.4", | |
"lab404/laravel-impersonate": "^1.7.3", | |
"laravel/framework": "^9.19", | |
"laravel/sanctum": "^3.0", | |
"laravel/tinker": "^2.7", | |
"nathanheffley/laravel-slack-blocks": "^2.3.0", | |
"nwidart/laravel-modules": "^9.0.6", | |
"openspout/openspout": "^4.12.1", | |
"phpdocumentor/reflection-docblock": "^5.3.0", | |
"spatie/laravel-sitemap": "^6.3" | |
}, | |
"require-dev": { | |
"fakerphp/faker": "^1.9.1", | |
"laravel/pint": "^1.0", | |
"laravel/sail": "^1.0.1", | |
"mockery/mockery": "^1.4.4", | |
"nunomaduro/collision": "^6.1", | |
"phpunit/phpunit": "^9.5.10", | |
"spatie/laravel-ignition": "^1.0" | |
}, | |
"config": { | |
"optimize-autoloader": true, | |
"preferred-install": "dist", | |
"sort-packages": true, | |
"allow-plugins": { | |
"pestphp/pest-plugin": true | |
} | |
}, | |
"extra": { | |
"laravel": { | |
"dont-discover": [] | |
} | |
}, | |
"autoload": { | |
"files": [ | |
"app/Halcyon/helpers.php" | |
], | |
"psr-4": { | |
"App\\": "app/", | |
"Database\\Factories\\": "database/factories/", | |
"Database\\Seeders\\": "database/seeders/" | |
} | |
}, | |
"autoload-dev": { | |
"psr-4": { | |
"Tests\\": "tests/" | |
} | |
}, | |
"minimum-stability": "stable", | |
"prefer-stable": true, | |
"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" | |
], | |
"initial-setup": [ | |
"@php artisan migrate || true", | |
"@php artisan migrate || true", | |
"@php artisan module:migrate || true", | |
"@php artisan storage:link || true", | |
"@php artisan module:publish || true", | |
"@php artisan theme:publish || true", | |
"@php artisan listener:publish || true", | |
"@php artisan key:generate --ansi || true", | |
"chmod -R 777 storage/framework", | |
"chmod -R 777 storage/logs" | |
] | |
} | |
} |