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.
 
 
 
 

68 lines
1.6 KiB

  1. {
  2. "type": "project",
  3. "license": "proprietary",
  4. "require": {
  5. "php": "^7.2.5",
  6. "ext-ctype": "*",
  7. "ext-iconv": "*",
  8. "mongodb/mongodb": "^1.6",
  9. "myclabs/php-enum": "^1.7",
  10. "nyholm/psr7": "^1.2",
  11. "psr/http-client": "^1.0",
  12. "symfony/console": "5.0.*",
  13. "symfony/dotenv": "5.0.*",
  14. "symfony/flex": "^1.3.1",
  15. "symfony/framework-bundle": "5.0.*",
  16. "symfony/http-client": "5.0.*",
  17. "symfony/yaml": "5.0.*"
  18. },
  19. "require-dev": {
  20. },
  21. "config": {
  22. "preferred-install": {
  23. "*": "dist"
  24. },
  25. "sort-packages": true
  26. },
  27. "autoload": {
  28. "psr-4": {
  29. "App\\": "src/"
  30. }
  31. },
  32. "autoload-dev": {
  33. "psr-4": {
  34. "App\\Tests\\": "tests/"
  35. }
  36. },
  37. "replace": {
  38. "paragonie/random_compat": "2.*",
  39. "symfony/polyfill-ctype": "*",
  40. "symfony/polyfill-iconv": "*",
  41. "symfony/polyfill-php72": "*",
  42. "symfony/polyfill-php71": "*",
  43. "symfony/polyfill-php70": "*",
  44. "symfony/polyfill-php56": "*"
  45. },
  46. "scripts": {
  47. "auto-scripts": {
  48. "cache:clear": "symfony-cmd",
  49. "assets:install %PUBLIC_DIR%": "symfony-cmd"
  50. },
  51. "post-install-cmd": [
  52. "@auto-scripts"
  53. ],
  54. "post-update-cmd": [
  55. "@auto-scripts"
  56. ]
  57. },
  58. "conflict": {
  59. "symfony/symfony": "*"
  60. },
  61. "extra": {
  62. "symfony": {
  63. "allow-contrib": false,
  64. "require": "5.0.*"
  65. }
  66. }
  67. }