Skip to content

Commit

Permalink
Support PHP 7.4 Property Types
Browse files Browse the repository at this point in the history
  • Loading branch information
dantleech committed Dec 6, 2019
1 parent cf0b291 commit 448a872
Show file tree
Hide file tree
Showing 5 changed files with 41 additions and 6 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ Changelog

Features:

- [worse-reflection] Support for PHP 7.4 property types - @dantleech / @elythyr
- [code-transform|rpc] Import missing classes - @dantleech
- [context-menu] Invoke menu for the nearest actionable node (i.e. you can
invoke the context menu on whitespace now) - @elythyr
Expand Down
8 changes: 4 additions & 4 deletions composer.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 2 additions & 1 deletion config/maestro.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,8 @@
"default": {
"type": "package",
"args": {
"url": "git@github.com:$PACKAGE_NAME"
"url": "git@github.com:$PACKAGE_NAME",
"version": "%version%"
},
"nodes": {
"init": {
Expand Down
2 changes: 1 addition & 1 deletion config/packages/docblock.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
]
},
"prototype": "default",
"args": {
"vars": {
"version": "0.3.1"
}
}
33 changes: 33 additions & 0 deletions config/versions.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
{
"vars": {
"source_dir": "lib",
"php_versions": [ 7.1, 7.2, 7.3, 7.4 ],
"phpstan_level": 7,
"phpstan_ignore": [],
"php_cs_fixer_ignore_dirs": [
"tests/Workspace"
],
"travis_checks": [
"./vendor/bin/php-cs-fixer fix --dry-run",
"./vendor/bin/phpstan analyse lib -c phpstan.neon",
"./vendor/bin/phpunit"
]
},
"nodes": {
"include": "packages/*.json"
},
"prototypes": {
"default": {
"type": "package",
"args": {
"url": "git@github.com:$PACKAGE_NAME",
"version": "%version%"
},
"nodes": {
"survey": {
"type": "survey"
}
}
}
}
}

0 comments on commit 448a872

Please sign in to comment.