Files
nexusphp/composer.json

76 lines
2.0 KiB
JSON
Raw Normal View History

2021-01-13 19:32:26 +08:00
{
"name": "xiaomlove/nexusphp",
2021-01-28 20:37:35 +08:00
"description": "A private tracker application base on NexusPHP.",
2021-01-13 19:32:26 +08:00
"type": "project",
"license": "GPL-2.0-only",
"authors": [
{
"name": "xiaomlove",
"email": "1939737565@qq.com"
}
],
"autoload": {
"psr-4": {
2021-04-02 19:48:41 +08:00
"Nexus\\": "nexus/",
"App\\": "app/",
"Database\\Factories\\": "database/factories/",
"Database\\Seeders\\": "database/seeders/"
},
"files": [
2021-04-21 00:07:32 +08:00
"include/globalfunctions.php",
"include/functions.php"
2021-04-02 19:48:41 +08:00
]
2021-01-13 19:32:26 +08:00
},
"require": {
2021-04-02 19:48:41 +08:00
"php": "^7.3|^8.0",
"fideloper/proxy": "^4.4",
"fruitcake/laravel-cors": "^2.0",
"laravel/framework": "^8.12",
"laravel/tinker": "^2.5",
2021-01-27 16:26:37 +08:00
"ext-gd": "*",
"ext-mbstring": "*",
"ext-mysqli": "*",
"ext-json": "*",
2021-01-15 01:12:44 +08:00
"swiftmailer/swiftmailer": "^6.2",
2021-01-18 00:41:35 +08:00
"guzzlehttp/guzzle": "~6.0",
"imdbphp/imdbphp": "^6.4"
2021-04-02 19:48:41 +08:00
},
"require-dev": {
"facade/ignition": "^2.5",
"fakerphp/faker": "^1.9.1",
"laravel/sail": "^1.0.1",
"mockery/mockery": "^1.4.2",
"nunomaduro/collision": "^5.0",
"phpunit/phpunit": "^9.3.3"
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"scripts": {
"post-autoload-dump": [
"Illuminate\\Foundation\\ComposerScripts::postAutoloadDump",
"@php artisan package:discover --ansi"
],
"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
},
"minimum-stability": "dev",
"prefer-stable": true
2021-01-13 19:32:26 +08:00
}