2019-10-29 07:01:12 +05:30
|
|
|
name: 'Setup PHP Action'
|
2019-09-06 06:10:52 +05:30
|
|
|
author: shivammathur
|
2019-10-11 23:09:05 +05:30
|
|
|
description: 'GitHub action to setup PHP with required extensions, php.ini configuration, code-coverage support and composer'
|
2019-09-06 07:22:50 +05:30
|
|
|
branding:
|
2019-09-06 06:10:52 +05:30
|
|
|
color: 'purple'
|
2019-09-06 05:17:43 +05:30
|
|
|
inputs:
|
|
|
|
php-version:
|
2019-11-30 22:56:28 +05:30
|
|
|
description: 'Setup PHP version.'
|
|
|
|
default: '7.4'
|
2019-09-07 18:33:47 +05:30
|
|
|
required: true
|
2019-09-07 18:01:50 +05:30
|
|
|
extension-csv:
|
2019-11-30 22:56:28 +05:30
|
|
|
description: 'Setup PHP extensions.'
|
2019-09-07 18:33:47 +05:30
|
|
|
required: false
|
2019-09-18 07:40:09 +05:30
|
|
|
ini-values-csv:
|
2019-11-30 22:56:28 +05:30
|
|
|
description: 'Add values to php.ini.'
|
2019-09-18 07:40:09 +05:30
|
|
|
required: false
|
2019-09-26 02:33:39 +05:30
|
|
|
coverage:
|
2019-11-30 22:56:28 +05:30
|
|
|
description: 'Setup code coverage driver.'
|
2019-09-26 02:33:39 +05:30
|
|
|
required: false
|
2019-11-07 11:11:35 +05:30
|
|
|
pecl:
|
2019-11-30 22:56:28 +05:30
|
|
|
description: 'Setup PECL on ubuntu'
|
2019-11-07 11:11:35 +05:30
|
|
|
required: false
|
2019-09-06 05:17:43 +05:30
|
|
|
runs:
|
|
|
|
using: 'node12'
|
2019-11-24 05:14:53 +05:30
|
|
|
main: 'dist/index.js'
|