Advertisement
Guest User

Neos 1.0.2 composer.json files

a guest
Jun 10th, 2014
263
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.30 KB | None | 0 0
  1. composer.json in root:
  2.  
  3. {
  4. "name": "typo3/neos-base-distribution",
  5. "description" : "TYPO3 Neos Base Distribution",
  6. "license": "GPL-3.0+",
  7. "minimum-stability": "dev", <==== added because of earlier advice
  8. "config": {
  9. "vendor-dir": "Packages/Libraries",
  10. "bin-dir": "bin"
  11. },
  12. "require": {
  13. "typo3/neos": "1.0.*",
  14. "typo3/neos-nodetypes": "1.0.*",
  15. "typo3/neosdemotypo3org": "1.0.*",
  16. "typo3/neos-kickstarter": "1.0.*",
  17.  
  18. "doctrine/migrations": "@dev"
  19. },
  20. "require-dev": {
  21. "typo3/buildessentials": "2.1.*",
  22. "mikey179/vfsstream": "1.2.*",
  23. "phpunit/phpunit": "3.7.*",
  24. "flowpack/behat": "dev-master"
  25. },
  26. "suggest": {
  27. "ext-pdo_sqlite": "For running functional tests out-of-the-box this is required",
  28. "typo3/neos-nodetypes": "Standard nodetypes of TYPO3 Neos"
  29. },
  30. "scripts": {
  31. "post-update-cmd": "TYPO3\\Flow\\Composer\\InstallerScripts::postUpdateAndInstall",
  32. "post-install-cmd": "TYPO3\\Flow\\Composer\\InstallerScripts::postUpdateAndInstall",
  33. "post-package-update":"TYPO3\\Flow\\Composer\\InstallerScripts::postPackageUpdateAndInstall",
  34. "post-package-install":"TYPO3\\Flow\\Composer\\InstallerScripts::postPackageUpdateAndInstall"
  35. }
  36. }
  37.  
  38. Build/BuildEssentials/composer.json:
  39.  
  40. {
  41. "name": "typo3/buildessentials",
  42. "type": "typo3-flow-build",
  43. "description": "TYPO3 Flow Build Toolchain Essentials",
  44. "license": ["LGPL-3.0+"],
  45. "require": {
  46. "composer/installers": "~1.0.2"
  47. },
  48. "extra": {
  49. "installer-name": "BuildEssentials"
  50. }
  51. }
  52.  
  53. Packages/Application/TYPO3.Neos/composer.json
  54.  
  55. {
  56. "name": "typo3/neos",
  57. "type": "typo3-flow-package",
  58. "license": "GPL-3.0+",
  59. "description": "The next generation of the popular open-source CMS.",
  60. "require": {
  61. "typo3/flow": "2.1.*",
  62.  
  63. "typo3/media": "1.0.*",
  64. "typo3/setup": "1.0.*",
  65. "typo3/extjs": "*",
  66. "typo3/twitter-bootstrap": "*",
  67. "typo3/typo3cr": "1.0.*",
  68. "typo3/typoscript": "1.0.*"
  69. },
  70. "suggest": {
  71. "typo3/neos-kickstarter": "Helps with creating new packages for TYPO3 Neos."
  72. },
  73. "autoload": {
  74. "psr-0": {
  75. "TYPO3\\Neos": "Classes"
  76. }
  77. },
  78. "extra": {
  79. "typo3/flow": {
  80. "manage-resources" : true
  81. }
  82. }
  83. }
  84.  
  85. Packages/Application/TYPO3.Neos.Kickstarter/composer.json
  86.  
  87. {
  88. "name": "typo3/neos-kickstarter",
  89. "type": "typo3-flow-package",
  90. "description": "A simple generator for Neos assets, like sites and plugins.",
  91. "license": "GPL-3.0+",
  92. "require": {
  93. "typo3/neos": "1.0.*",
  94. "typo3/kickstart": "*",
  95. "typo3/neos-nodetypes": "1.0.*"
  96. },
  97. "autoload": {
  98. "psr-0": {
  99. "TYPO3\\Neos\\Kickstarter": "Classes"
  100. }
  101. }
  102. }
  103.  
  104. Packages/Application/TYPO3.Neos.NodeTypes/composer.json
  105.  
  106. {
  107. "name": "typo3/neos-nodetypes",
  108. "type": "typo3-flow-package",
  109. "description": "Node type configuration for TYPO3 Neos",
  110. "license": "GPL-3.0+",
  111. "require": {
  112. "typo3/neos": "1.0.*"
  113. },
  114. "autoload": {
  115. "psr-0": {
  116. "TYPO3\\Neos\\NodeTypes": "Classes"
  117. }
  118. }
  119. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement