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.

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