Skip to content

1.0.0 Release

Compare
Choose a tag to compare
@harikt harikt released this 11 Mar 04:15
· 18 commits to develop since this release

1.0 release of Processwire module installer.

{
    "name": "change/vendor-name",
    "type": "pw-module",
    "description": "Change here with what your module does",
    "keywords": [ "keywords", "comma", "seprated"],
    "homepage": "http://example.com",
    "license": "MIT",
    "authors": [
        {
            "name": "Your name",
            "homepage": "http://example.com"
        }
    ],
    "require": {
        "php": ">=5.3.0",
        "hari/pw-module": "~1.0"
    }
}

Above json is the bare minimal composer.json file needed for composer to install your module in the processwire module folder. There is not much changes apart from some read me link fixes from 0.0.1 .

One thing everyone need to make sure is don't use dev-master . Please always use a tagged release for the master branch will move with new commits and will make everyones system breaking. Please tag each releases. Try to follow semversion .

Thank you