mirror of
https://github.com/devilbox/docker-php-fpm.git
synced 2025-12-15 05:21:14 +00:00
Add taskfile
This commit is contained in:
8
php_tools/taskfile/README.md
Normal file
8
php_tools/taskfile/README.md
Normal file
@@ -0,0 +1,8 @@
|
||||
# taskfile
|
||||
|
||||
Task is a task runner / build tool that aims to be simpler and easier to use than, for example, GNU Make.
|
||||
|
||||
| Platform | Url |
|
||||
|----------|------------------------------------------------------------------|
|
||||
| GitHub | https://github.com/go-task/task |
|
||||
| Website | https://taskfile.dev/ |
|
||||
7
php_tools/taskfile/install.yml
Normal file
7
php_tools/taskfile/install.yml
Normal file
@@ -0,0 +1,7 @@
|
||||
---
|
||||
|
||||
check: task --version | grep -E '[0-9][.0-9]+' || (task --version; false)
|
||||
|
||||
all:
|
||||
type: custom
|
||||
command: sh -c "$(curl -sS -K --fail -k https://taskfile.dev/install.sh)" -- -d -b /usr/local/bin/
|
||||
11
php_tools/taskfile/options.yml
Normal file
11
php_tools/taskfile/options.yml
Normal file
@@ -0,0 +1,11 @@
|
||||
---
|
||||
|
||||
# The name of the module
|
||||
name: taskfile
|
||||
|
||||
# Exclude module build/installation for the following PHP versions
|
||||
exclude: []
|
||||
|
||||
# In order for this tool to build/install correctly,
|
||||
# the following tools must have been installed first.
|
||||
depends: []
|
||||
Reference in New Issue
Block a user