config phpunit 9
This commit is contained in:
parent
581928b10f
commit
cee48dd01e
@ -15,6 +15,8 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"require": {
|
"require": {
|
||||||
|
"phpunit/phpunit": "^9",
|
||||||
|
"php": "^7.3, 8.0.*"
|
||||||
},
|
},
|
||||||
"autoload": {
|
"autoload": {
|
||||||
"psr-4": {
|
"psr-4": {
|
||||||
|
19
sbin/retag
Executable file
19
sbin/retag
Executable file
@ -0,0 +1,19 @@
|
|||||||
|
#!/bin/bash
|
||||||
|
# -*- coding: utf-8 mode: sh -*- vim:sw=4:sts=4:et:ai:si:sta:fenc=utf-8
|
||||||
|
source /etc/nulib.sh || exit 1
|
||||||
|
|
||||||
|
TAGS=(
|
||||||
|
7.3
|
||||||
|
7.4
|
||||||
|
8.0
|
||||||
|
)
|
||||||
|
|
||||||
|
args=(
|
||||||
|
"refaire les tags en cas de mise à jour de la branche"
|
||||||
|
)
|
||||||
|
parse_args "$@"; set -- "${args[@]}"
|
||||||
|
|
||||||
|
for tag in "${TAGS[@]}"; do
|
||||||
|
git tag -f "$tag"
|
||||||
|
git push -f origin tag "$tag" || die
|
||||||
|
done
|
Loading…
Reference in New Issue
Block a user