Repo for the search and displace core module including the interface to select files and search and displace operations to run on them. https://searchanddisplace.com
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.

57 lines
1.4 KiB

3 years ago
3 years ago
3 years ago
2 years ago
3 years ago
3 years ago
2 years ago
3 years ago
  1. {
  2. "name": "search-and-displace-core",
  3. "type": "project",
  4. "description": "Search and displace Core, web interface",
  5. "keywords": [
  6. "framework",
  7. "laravel"
  8. ],
  9. "license": "MIT",
  10. "require": {
  11. "php": "^7.4|^8.0",
  12. "fideloper/proxy": "^4.4",
  13. "guzzlehttp/guzzle": "^7.3",
  14. "laravel/framework": "^6.20",
  15. "laravel/tinker": "^2.5",
  16. "predis/predis": "^1.1",
  17. "spatie/laravel-webhook-client": "^2.7"
  18. },
  19. "require-dev": {
  20. "facade/ignition": "^1.16.4",
  21. "fakerphp/faker": "^1.9.1",
  22. "mockery/mockery": "^1.0",
  23. "nunomaduro/collision": "^3.0",
  24. "phpunit/phpunit": "^8.5.8|^9.3.3"
  25. },
  26. "config": {
  27. "optimize-autoloader": true,
  28. "preferred-install": "dist",
  29. "sort-packages": true
  30. },
  31. "extra": {
  32. "laravel": {
  33. "dont-discover": []
  34. }
  35. },
  36. "autoload": {
  37. "psr-4": {
  38. "App\\": "app/"
  39. },
  40. "classmap": []
  41. },
  42. "autoload-dev": {
  43. "psr-4": {
  44. "Tests\\": "tests/"
  45. }
  46. },
  47. "minimum-stability": "dev",
  48. "prefer-stable": true,
  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 --ansi"
  55. ]
  56. }
  57. }