Advertisement
Guest User

Untitled

a guest
Jul 28th, 2015
172
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.13 KB | None | 0 0
  1. {
  2. "name": "laravel/laravel",
  3. "description": "The Laravel Framework.",
  4. "keywords": ["framework", "laravel"],
  5. "license": "MIT",
  6. "type": "project",
  7. "require": {
  8. "laravel/framework": "5.0.*",
  9. "filp/whoops": "~1.1",
  10. "doctrine/dbal": "~2.5",
  11. "illuminate/html": "~5.0",
  12. "laracasts/flash": "~1.3",
  13. "hieu-le/active": "~2.2",
  14. "kodeine/laravel-acl": "~1.0@dev",
  15. "maatwebsite/excel": "~2.0.0",
  16. "cviebrock/eloquent-sluggable": "~3.0"
  17. },
  18. "require-dev": {
  19. "phpunit/phpunit": "~4.0",
  20. "phpspec/phpspec": "~2.1"
  21. },
  22. "autoload": {
  23. "classmap": [
  24. "database"
  25. ],
  26. "psr-4": {
  27. "App\\": "app/"
  28. }
  29. },
  30. "autoload-dev": {
  31. "classmap": [
  32. "tests/TestCase.php"
  33. ]
  34. },
  35. "scripts": {
  36. "post-install-cmd": [
  37. "php artisan clear-compiled",
  38. "php artisan optimize"
  39. ],
  40. "pre-update-cmd": [
  41. "php artisan clear-compiled"
  42. ],
  43. "post-update-cmd": [
  44. "php artisan optimize"
  45. ],
  46. "post-create-project-cmd": [
  47. "php -r \"copy('.env.example', '.env');\"",
  48. "php artisan key:generate"
  49. ]
  50. },
  51. "config": {
  52. "preferred-install": "dist"
  53. }
  54.  
  55. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement