Created
November 27, 2016 16:43
-
-
Save ppshobi/c8b603012a13cdeff8a36c84cd505d6d to your computer and use it in GitHub Desktop.
Techdetect composer json
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": "laravel/laravel", | |
"description": "The Laravel Framework.", | |
"keywords": ["framework", "laravel"], | |
"license": "MIT", | |
"type": "project", | |
"require": { | |
"php": ">=5.6.4", | |
"laravel/framework": "5.3.*", | |
"novutec/whoisparser": "^3.2", | |
"laravelcollective/html": "^5.2.0", | |
"sunra/php-simple-html-dom-parser": "^1.5" | |
}, | |
"require-dev": { | |
"fzaninotto/faker": "~1.4", | |
"mockery/mockery": "0.9.*", | |
"phpunit/phpunit": "~5.0", | |
"symfony/css-selector": "3.1.*", | |
"symfony/dom-crawler": "3.1.*" | |
}, | |
"autoload": { | |
"classmap": [ | |
"database" | |
], | |
"psr-4": { | |
"App\\": "app/" | |
} | |
}, | |
"autoload-dev": { | |
"classmap": [ | |
"tests/TestCase.php" | |
] | |
}, | |
"scripts": { | |
"post-root-package-install": [ | |
"php -r \"file_exists('.env') || copy('.env.example', '.env');\"" | |
], | |
"post-create-project-cmd": [ | |
"php artisan key:generate" | |
], | |
"post-install-cmd": [ | |
"Illuminate\\Foundation\\ComposerScripts::postInstall", | |
"php artisan optimize" | |
], | |
"post-update-cmd": [ | |
"Illuminate\\Foundation\\ComposerScripts::postUpdate", | |
"php artisan optimize" | |
] | |
}, | |
"config": { | |
"preferred-install": "dist" | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment