Initial repo for search and displace code (written for, rather than the tools used in the processing)
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.

66 lines
1.5 KiB

  1. {
  2. "name": "laravel/laravel",
  3. "description": "The Laravel Framework.",
  4. "keywords": ["framework", "laravel"],
  5. "license": "MIT",
  6. "type": "project",
  7. "require": {
  8. "php": ">=7.1.3",
  9. "doctrine/dbal": "^2.9",
  10. "enqueue/amqp-bunny": "^0.10.0",
  11. "enqueue/simple-client": "^0.10.0",
  12. "fideloper/proxy": "~4.0",
  13. "intervention/image": "^2.5",
  14. "jasig/phpcas": "1.3.4",
  15. "laravel/framework": "^5.7.7",
  16. "laravel/tinker": "~1.0",
  17. "maatwebsite/excel": "^3.1",
  18. "subfission/cas": "2.0.9",
  19. "symfony/process": "^4.4.1"
  20. },
  21. "require-dev": {
  22. "beyondcode/laravel-er-diagram-generator": "^1.4",
  23. "filp/whoops": "~2.0",
  24. "fzaninotto/faker": "~1.4",
  25. "mockery/mockery": "~1.0",
  26. "phpunit/phpunit": "~7.0"
  27. },
  28. "autoload": {
  29. "classmap": [
  30. "database/seeds",
  31. "database/factories"
  32. ],
  33. "psr-4": {
  34. "App\\": "app/"
  35. }
  36. },
  37. "autoload-dev": {
  38. "psr-4": {
  39. "Tests\\": "tests/"
  40. }
  41. },
  42. "extra": {
  43. "laravel": {
  44. "dont-discover": [
  45. "TelescopeServiceProvider"
  46. ]
  47. }
  48. },
  49. "scripts": {
  50. "post-root-package-install": [
  51. "@php -r \"file_exists('.env') || copy('.env.example', '.env');\""
  52. ],
  53. "post-create-project-cmd": [
  54. "@php artisan key:generate"
  55. ],
  56. "post-autoload-dump": [
  57. "Illuminate\\Foundation\\ComposerScripts::postAutoloadDump",
  58. "@php artisan package:discover"
  59. ]
  60. },
  61. "config": {
  62. "preferred-install": "dist",
  63. "sort-packages": true,
  64. "optimize-autoloader": true
  65. }
  66. }