Compare commits

..

3 Commits
dev ... pu9

Author SHA1 Message Date
8f641d9a7c maj projet 2025-02-28 21:12:35 +04:00
30047ba8cb maj projet 2025-02-28 21:09:05 +04:00
cee48dd01e config phpunit 9 2025-02-28 21:01:32 +04:00
4 changed files with 25 additions and 4 deletions

View File

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

View File

@ -15,6 +15,8 @@
} }
}, },
"require": { "require": {
"phpunit/phpunit": "^9",
"php": "^7.3 || 8.0.*"
}, },
"autoload": { "autoload": {
"psr-4": { "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", "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies",
"This file is @generated automatically" "This file is @generated automatically"
], ],
"content-hash": "c8ba78619bb2ea39bf47923a87ed96a6", "content-hash": "4bf96ddf8e061d71f11bf0a8906a344b",
"packages": [], "packages": [],
"packages-dev": [], "packages-dev": [],
"aliases": [], "aliases": [],

19
sbin/retag Executable file
View 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