composer.json 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  1. {
  2. "name": "kriswallsmith/assetic",
  3. "minimum-stability": "dev",
  4. "description": "Asset Management for PHP",
  5. "keywords": [ "assets", "compression", "minification" ],
  6. "homepage": "https://github.com/kriswallsmith/assetic",
  7. "type": "library",
  8. "license": "MIT",
  9. "authors": [
  10. {
  11. "name": "Kris Wallsmith",
  12. "email": "kris.wallsmith@gmail.com",
  13. "homepage": "http://kriswallsmith.net/"
  14. }
  15. ],
  16. "require": {
  17. "php": ">=5.3.1",
  18. "symfony/process": "~2.1"
  19. },
  20. "require-dev": {
  21. "phpunit/phpunit": "~3.7",
  22. "twig/twig": "~1.6",
  23. "leafo/lessphp": "*",
  24. "leafo/scssphp": "*",
  25. "ptachoire/cssembed": "*",
  26. "leafo/scssphp-compass": "*",
  27. "cssmin/cssmin": "*",
  28. "mrclay/minify": "*",
  29. "kamicane/packager": "*",
  30. "joliclic/javascript-packer": "*"
  31. },
  32. "suggest": {
  33. "twig/twig": "Assetic provides the integration with the Twig templating engine",
  34. "leafo/lessphp": "Assetic provides the integration with the lessphp LESS compiler",
  35. "leafo/scssphp": "Assetic provides the integration with the scssphp SCSS compiler",
  36. "ptachoire/cssembed": "Assetic provides the integration with phpcssembed to embed data uris",
  37. "leafo/scssphp-compass": "Assetic provides the integration with the SCSS compass plugin"
  38. },
  39. "autoload": {
  40. "psr-0": { "Assetic": "src/" },
  41. "files": [ "src/functions.php" ]
  42. },
  43. "config": {
  44. "bin-dir": "bin"
  45. },
  46. "extra": {
  47. "branch-alias": {
  48. "dev-master": "1.1-dev"
  49. }
  50. },
  51. "repositories": [
  52. {
  53. "type": "package",
  54. "package": {
  55. "name": "cssmin/cssmin",
  56. "version": "3.0.1",
  57. "dist": { "url": "http://cssmin.googlecode.com/files/cssmin-v3.0.1.php", "type": "file" },
  58. "autoload": { "classmap": [ "cssmin-v3.0.1.php" ] }
  59. }
  60. },
  61. {
  62. "type": "package",
  63. "package": {
  64. "name": "kamicane/packager",
  65. "version": "1.0",
  66. "dist": { "url": "https://github.com/kamicane/packager/archive/1.0.zip", "type": "zip" },
  67. "autoload": { "classmap": [ "." ] }
  68. }
  69. },
  70. {
  71. "type": "package",
  72. "package": {
  73. "name": "joliclic/javascript-packer",
  74. "version": "1.1",
  75. "dist": { "url": "http://joliclic.free.fr/php/javascript-packer/telechargement.php?id=2&action=telecharger", "type": "zip" },
  76. "autoload": { "classmap": [ "class.JavaScriptPacker.php" ] }
  77. }
  78. }
  79. ]
  80. }