understrap / understrap-child

The starter child theme for Understrap, the renowned open-source WordPress starter theme.
GNU General Public License v3.0
580 stars 330 forks source link

Composer.json still has the older git URL #318

Open bacoords opened 2 years ago

bacoords commented 2 years ago
{
    "name": "holger1411/understrap-child",
    "description": "Basic Child Theme for Understrap Theme Framework",
    "type": "library",
    "license": "GPL-2.0",
    "minimum-stability": "stable",
    "require": {},
    "keywords": ["wordpress","theme","bootstrap"],
    "homepage": "https://github.com/holger1411/understrap-child"
}

should be

{
    "name": "understrap/understrap-child",
    "description": "Basic Child Theme for Understrap Theme Framework",
    "type": "library",
    "license": "GPL-2.0",
    "minimum-stability": "stable",
    "require": {},
    "keywords": ["wordpress","theme","bootstrap"],
    "homepage": "https://github.com/understrap/understrap-child"
}
kirannasim commented 2 years ago

@bacoords just fixed this issue

https://github.com/understrap/understrap-child/pull/344