setup-php/action.yml

17 lines
433 B
YAML
Raw Normal View History

2019-09-06 08:11:53 +07:00
name: 'Setup PHP Action'
2019-09-06 07:40:52 +07:00
author: shivammathur
2019-09-06 06:47:43 +07:00
description: 'Setup a PHP environment with composer and add it to the PATH'
2019-09-06 08:52:50 +07:00
branding:
2019-09-06 07:40:52 +07:00
icon: 'activity'
color: 'purple'
2019-09-06 06:47:43 +07:00
inputs:
php-version:
2019-09-07 19:31:50 +07:00
description: 'PHP version to be installed.'
required: true
2019-09-07 19:31:50 +07:00
extension-csv:
description: '(Optional) Comma seperated list of PHP extensions to be installed.'
required: false
2019-09-06 06:47:43 +07:00
runs:
using: 'node12'
main: 'lib/install.js'