acquia / lightning-project

A Composer-based installer for the Lightning distribution of Drupal 8. Support ended on November 2, 2021 and this project is no longer maintained.
133 stars 60 forks source link

License "GPL-2.0+" is a deprecated SPDX license identifier, use "GPL-2.0-or-later" instead #90

Closed hoff331 closed 5 years ago

hoff331 commented 5 years ago

composer.json reads:

{
    "name": "acquia/lightning-project",
    "description": "Project template for Drupal 8 sites built with the Lightning distribution.",
    "type": "project",
    "license": "GPL-2.0+",

...resulting in the following warning:

License "GPL-2.0+" is a deprecated SPDX license identifier, use "GPL-2.0-or-later" instead

composer.json should read:

{
    "name": "acquia/lightning-project",
    "description": "Project template for Drupal 8 sites built with the Lightning distribution.",
    "type": "project",
    "license": "GPL-2.0-or-later",
balsama commented 5 years ago

Fixed in #93