Nanodicom icon indicating copy to clipboard operation
Nanodicom copied to clipboard

Support for composer

Open jacobalberty opened this issue 9 years ago • 3 comments

This patch adds a composer.json that can be used to add nanodicom to packagist.org later on.

jacobalberty avatar Dec 17 '15 16:12 jacobalberty

Ping :slightly_smiling_face: It would be great to get this merged

emmetog avatar Sep 25 '17 09:09 emmetog

Seems that this library is not actively developed.

ghost avatar Oct 06 '17 09:10 ghost

You could use this code into your composer.json.

  "repositories":
  [
    {
      "type": "package",
      "package":
      {
        "name": "nanodocumet/nanodicom",
        "version": "master",
        "source":
        {
          "type": "git",
          "url": "https://github.com/nanodocumet/Nanodicom.git",
          "reference": "master"
        }
      }
    }
  ],
  "autoload":
  {   
    "classmap":
    [   
      "vendor/nanodocumet/nanodicom"
    ]
  },
  "require":
  {
    "nanodocumet/nanodicom": "dev-master"
  }

lopezdonaque avatar Oct 06 '17 14:10 lopezdonaque