composer.json 2.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  1. {
  2. "name": "cnaf/symfony-skeleton",
  3. "type": "project",
  4. "license": "MIT",
  5. "description": "A minimal Symfony project recommended to create bare bones applications",
  6. "minimum-stability": "stable",
  7. "prefer-stable": true,
  8. "repositories": [
  9. {
  10. "packagist": false
  11. },
  12. {
  13. "type": "composer",
  14. "url": "http://nexus.intra.cnaf/repository/composer-proxy/"
  15. },
  16. {
  17. "type": "composer",
  18. "url": "http://nexus.intra.cnaf/repository/composer-snapshots/"
  19. },
  20. {
  21. "type": "composer",
  22. "url": "http://nexus.intra.cnaf/repository/composer-releases/"
  23. }
  24. ],
  25. "require": {
  26. "php": ">=8.1",
  27. "ext-ctype": "*",
  28. "ext-iconv": "*",
  29. "symfony/flex": "^2"
  30. },
  31. "flex-require": {
  32. "symfony/console": "*",
  33. "symfony/dotenv": "*",
  34. "symfony/framework-bundle": "*",
  35. "symfony/runtime": "*",
  36. "symfony/yaml": "*"
  37. },
  38. "require-dev": {
  39. },
  40. "config": {
  41. "secure-http": false,
  42. "allow-plugins": {
  43. "composer/package-versions-deprecated": true,
  44. "symfony/flex": true,
  45. "symfony/runtime": true
  46. },
  47. "optimize-autoloader": true,
  48. "preferred-install": {
  49. "*": "dist"
  50. },
  51. "sort-packages": true
  52. },
  53. "autoload": {
  54. "psr-4": {
  55. "App\\": "src/"
  56. }
  57. },
  58. "autoload-dev": {
  59. "psr-4": {
  60. "App\\Tests\\": "tests/"
  61. }
  62. },
  63. "replace": {
  64. "symfony/polyfill-ctype": "*",
  65. "symfony/polyfill-iconv": "*",
  66. "symfony/polyfill-php72": "*",
  67. "symfony/polyfill-php73": "*",
  68. "symfony/polyfill-php74": "*",
  69. "symfony/polyfill-php80": "*"
  70. },
  71. "scripts": {
  72. "auto-scripts": [
  73. ],
  74. "post-install-cmd": [
  75. "@auto-scripts"
  76. ],
  77. "post-update-cmd": [
  78. "@auto-scripts"
  79. ]
  80. },
  81. "conflict": {
  82. "symfony/symfony": "*"
  83. },
  84. "extra": {
  85. "symfony": {
  86. "allow-contrib": true,
  87. "require": "6.4.*",
  88. "endpoint": [
  89. "https://gitlab.si.cnaf.info/api/v4/projects/48673/repository/files/index.json/raw?ref=main",
  90. "https://gitlab.si.cnaf.info/cnaf/flex/recipes/-/raw/flex/main/index.json",
  91. "https://gitlab.si.cnaf.info/cnaf/flex/recipes-contrib/-/raw/flex/main/index.json"
  92. ]
  93. }
  94. }
  95. }