We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c23b8d9 commit 757bacaCopy full SHA for 757baca
3 files changed
VERSION
@@ -0,0 +1 @@
1
+0.1.0
composer.json
@@ -8,6 +8,9 @@
8
"email": "davert.php@mailican.com"
9
}
10
],
11
+ "require": {
12
+ "php": ">=5.4.0"
13
+ },
14
"require-dev": {
15
"phpunit/phpunit": "3.7.*"
16
},
scripts/tag_release.php
@@ -0,0 +1,4 @@
+<?php
2
+$version = file_get_contents(__DIR__.'/../VERSION');
3
+system("git tag $version");
4
+system("git push origin master --tags");
0 commit comments