You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

composer.json 993B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. {
  2. "name": "laravel/laravel",
  3. "description": "The Laravel Framework.",
  4. "keywords": [
  5. "framework",
  6. "laravel"
  7. ],
  8. "license": "MIT",
  9. "type": "project",
  10. "require": {
  11. "laravel/framework": "5.0.*",
  12. "barryvdh/laravel-ide-helper": "~2.0",
  13. "doctrine/dbal": "~2.3",
  14. "3ie/laravel-storedprocedures": "0.1.*"
  15. },
  16. "require-dev": {
  17. "phpunit/phpunit": "~4.0",
  18. "phpspec/phpspec": "~2.1"
  19. },
  20. "autoload": {
  21. "classmap": [
  22. "database"
  23. ],
  24. "psr-4": {
  25. "App\\": "app/"
  26. }
  27. },
  28. "autoload-dev": {
  29. "classmap": [
  30. "tests/TestCase.php"
  31. ]
  32. },
  33. "scripts": {
  34. "post-install-cmd": [
  35. "php artisan clear-compiled",
  36. "php artisan optimize"
  37. ],
  38. "post-update-cmd": [
  39. "php artisan clear-compiled",
  40. "php artisan optimize"
  41. ],
  42. "post-create-project-cmd": [
  43. "php -r \"copy('.env.example', '.env');\"",
  44. "php artisan key:generate"
  45. ]
  46. },
  47. "config": {
  48. "preferred-install": "dist"
  49. }
  50. }