Skip to content

Commit e312414

Browse files
authored
Merge pull request #34 from smeghead/support-union-type
Support union type
2 parents e2bcfd6 + 3ab3395 commit e312414

21 files changed

+692
-3607
lines changed

.github/workflows/php.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
runs-on: ubuntu-latest
1313
strategy:
1414
matrix:
15-
php-versions: ['7.4', '8.0', '8.1', '8.2']
15+
php-versions: ['8.0', '8.1', '8.2']
1616
name: PHP ${{ matrix.php-versions }} Test
1717
steps:
1818
- uses: actions/checkout@v3

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
/vendor/
22
*.phar
3-
*.un~
3+
*.un~
4+
composer.lock

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"description": "A CLI tool that parses the PHP source directory and outputs PlantUML scripts.",
44
"type": "library",
55
"require": {
6-
"php" : ">=7.4",
6+
"php" : ">=8.0",
77
"symfony/finder": "^5.3",
88
"nikic/php-parser": "^4.13"
99
},

0 commit comments

Comments
 (0)