Advertisement
Guest User

Untitled

a guest
Oct 22nd, 2014
118
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. {
  2.     "name": "laravel/laravel",
  3.     "description": "The Laravel Framework.",
  4.     "keywords": ["framework", "laravel"],
  5.     "license": "MIT",
  6.     "require": {
  7.         "laravel/framework": "4.2.*",
  8.         "way/generators": "2.*",
  9.         "dimsav/laravel-translatable": "4.3.*",
  10.         "laracasts/validation": "~1.0",
  11.         "intervention/image": "2.0.*"
  12.     },
  13.     "autoload": {
  14.         "classmap": [
  15.             "app/commands",
  16.             "app/controllers",
  17.             "app/models",
  18.             "app/database/migrations",
  19.             "app/database/seeds",
  20.             "app/tests/TestCase.php"
  21.         ],
  22.         "psr-4": {
  23.             "Acme\\": "app/Acme"
  24.         },
  25.         "files": [
  26.             "app/Acme/helpers.php"
  27.         ]
  28.     },
  29.     "scripts": {
  30.         "post-install-cmd": [
  31.             "php artisan clear-compiled",
  32.             "php artisan optimize"
  33.         ],
  34.         "post-update-cmd": [
  35.             "php artisan clear-compiled",
  36.             "php artisan optimize"
  37.         ],
  38.         "post-create-project-cmd": [
  39.             "php artisan key:generate"
  40.         ]
  41.     },
  42.     "config": {
  43.         "preferred-install": "dist"
  44.     },
  45.     "minimum-stability": "stable"
  46. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement