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 1.4KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. {
  2. "name": "phpbenchmarks/symfony",
  3. "license": "proprietary",
  4. "type": "project",
  5. "require": {
  6. "php": "^7.1.3",
  7. "ext-ctype": "*",
  8. "ext-iconv": "*",
  9. "symfony/console": "4.2.*",
  10. "symfony/flex": "^1.1",
  11. "symfony/framework-bundle": "4.2.*",
  12. "symfony/yaml": "4.2.*",
  13. "symfony/translation": "4.2.*",
  14. "symfony/serializer-pack": "^1.0",
  15. "phpbenchmarks/symfony-common": "4.3.1"
  16. },
  17. "config": {
  18. "preferred-install": {
  19. "*": "dist"
  20. },
  21. "sort-packages": true
  22. },
  23. "autoload": {
  24. "psr-4": {
  25. "App\\": "src/"
  26. }
  27. },
  28. "replace": {
  29. "paragonie/random_compat": "2.*",
  30. "symfony/polyfill-ctype": "*",
  31. "symfony/polyfill-iconv": "*",
  32. "symfony/polyfill-php71": "*",
  33. "symfony/polyfill-php70": "*",
  34. "symfony/polyfill-php56": "*"
  35. },
  36. "scripts": {
  37. "auto-scripts": {
  38. "cache:clear": "symfony-cmd",
  39. "assets:install %PUBLIC_DIR%": "symfony-cmd"
  40. },
  41. "post-install-cmd": [
  42. "@auto-scripts"
  43. ],
  44. "post-update-cmd": [
  45. "@auto-scripts"
  46. ]
  47. },
  48. "conflict": {
  49. "symfony/symfony": "*"
  50. },
  51. "extra": {
  52. "symfony": {
  53. "allow-contrib": false,
  54. "require": "4.2.*"
  55. }
  56. }
  57. }