-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
action.yml
36 lines (36 loc) · 1.09 KB
/
action.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
name: 'Composer PHP versions in range'
description: 'Get PHP versions in range from composer.json'
branding:
icon: 'maximize'
color: 'green'
inputs:
upcomingReleases:
description: 'Include upcoming new major or minor releases'
required: false
nightly:
description: 'Include nightly of the next new major or minor releases'
required: false
workingDirectory:
description: The directory to run this action in
default: ""
required: false
outputs:
highest:
description: 'The highest version found in range'
lowest:
description: 'The lowest version found in range'
version:
description: 'The versions found in range'
upcoming:
description: 'The upcoming version found in range, if any'
nightly:
description: 'The nightly version found in range, if any'
extensions:
description: 'The PHP extensions found in require and require-dev'
requiredExtensions:
description: 'The PHP extensions found in require only'
requiredDevExtensions:
description: 'The PHP extensions found in require-dev only'
runs:
using: 'node20'
main: 'main.js'