Compare commits

..

1 Commits
8.1 ... dev

Author SHA1 Message Date
2b97eebc92 maj projet 2025-03-05 15:34:45 +04:00
4 changed files with 4 additions and 24 deletions

View File

@ -1,8 +1,8 @@
# -*- coding: utf-8 mode: sh -*- vim:sw=4:sts=4:et:ai:si:sta:fenc=utf-8
UPSTREAM=dev
DEVELOP=pu10
FEATURE=wip10/
UPSTREAM=
DEVELOP=dev
FEATURE=wip/
RELEASE=
MAIN=
TAG_SUFFIX=

View File

@ -15,8 +15,6 @@
}
},
"require": {
"phpunit/phpunit": "^10",
"php": "^8.1"
},
"autoload": {
"psr-4": {

2
composer.lock generated
View File

@ -4,7 +4,7 @@
"Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies",
"This file is @generated automatically"
],
"content-hash": "4bf96ddf8e061d71f11bf0a8906a344b",
"content-hash": "c8ba78619bb2ea39bf47923a87ed96a6",
"packages": [],
"packages-dev": [],
"aliases": [],

View File

@ -1,18 +0,0 @@
#!/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=(
8.1
8.2
)
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" || die
done