sublime-phpunit
sublime-phpunit copied to clipboard
Merge gerardroche/sublime-phpunit
Are you interested in merging https://github.com/gerardroche/sublime-phpunit ?
It is an ST3 only package. There are a few differences, not many other than >=ST3 only and some extra features.
I am very interested :)
I've just merged across the way you do the output panel. That's a huge improvement over my approach :)
I'll dig through the other features soon.
I think it might be easier to use package control ST version specific tags
// If your package is only compatible with specific builds of
// Sublime Text, this will cause the package to be hidden from
// users with incompatible versions.
//
// The "tags" key can be true for all valid semantic version tags, or
// can be a prefix string. Only tags in the form
// {prefix}{semantic_version} will be selected. In the example below,
// the entry with "sublime_text": "<3000" will match tags like:
//
// "st2-1.0.0"
// "st2-1.1.0"
//
// The release with "sublime_text": ">=3000" will match tags like:
//
// "st3-1.0.0"
// "st3-1.1.0"
{
"details": "https://github.com/wbond/sublime_alignment",
"releases": [
{
"sublime_text": "<3000",
"tags": "st2-"
}
{
"sublime_text": ">=3000",
"tags": true
}
]
},
Create a branch for the current major version release-5.0 off master and tag those releases st2-* and make version 6.0 st3 only.