heroku / buildpacks-php

Heroku's Cloud Native Buildpack for PHP applications.
BSD 3-Clause "New" or "Revised" License
8 stars 2 forks source link

composer.json 'scripts' entries can be strings #91

Closed dzuelke closed 4 months ago

dzuelke commented 6 months ago

Each value in the object can be a string for a single command, or list of commands:

{
  "scripts": {
    "foo": [
      "first-command",
      "second-command"
    ],
    "bar": "another-command"
  }
}

Fixes #90