Created
October 9, 2021 05:17
-
-
Save jsdecena/c09c5d8ffb1cc23540f934e84b7656ed to your computer and use it in GitHub Desktop.
Root composer json
This file contains hidden or 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": "laravel/laravel", | |
"type": "project", | |
"description": "The Laravel Framework.", | |
"keywords": [ | |
"framework", | |
"laravel" | |
], | |
"license": "MIT", | |
"require": { | |
"php": "^7.2.5", | |
"fideloper/proxy": "^4.2", | |
"fruitcake/laravel-cors": "^2.0", | |
"guzzlehttp/guzzle": "^6.3", | |
"laravel/framework": "^7.24", | |
"laravel/tinker": "^2.0", | |
"jeff/simple-tdd-10-steps": "dev-master" | |
}, | |
"require-dev": { | |
"facade/ignition": "^2.0", | |
"fzaninotto/faker": "^1.9.1", | |
"mockery/mockery": "^1.3.1", | |
"nunomaduro/collision": "^4.1", | |
"phpunit/phpunit": "^8.5" | |
}, | |
"config": { | |
"optimize-autoloader": true, | |
"preferred-install": "dist", | |
"sort-packages": true | |
}, | |
"extra": { | |
"laravel": { | |
"dont-discover": [] | |
} | |
}, | |
"autoload": { | |
"psr-4": { | |
"App\\": "app/" | |
}, | |
"classmap": [ | |
"database/seeds", | |
"database/factories" | |
] | |
}, | |
"autoload-dev": { | |
"psr-4": { | |
"Tests\\": "tests/" | |
} | |
}, | |
"minimum-stability": "dev", | |
"prefer-stable": true, | |
"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" | |
] | |
}, | |
"repositories": { | |
"simpletdd": { | |
"type": "path", | |
"url": "packages/simple-tdd-10-steps", | |
"options": { | |
"symlink": true | |
} | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment