We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 58493b3 commit 4210eb1Copy full SHA for 4210eb1
.editorconfig
@@ -15,3 +15,6 @@ indent_style = space
15
[*.{md,php,phpt}]
16
indent_size = 4
17
indent_style = space
18
+[*.yml]
19
+indent_size = 2
20
+indent_style = space
.travis.yml
@@ -7,9 +7,14 @@ php:
7
- 7.2
8
- 7.3
9
- 7.4
10
+ # https://travis-ci.community/t/php-8-0-missing/10132
11
+ # - 8.0snapshot
12
- nightly
13
14
before_script:
+ # Disable Xdebug because it should be unrelated to the functionality of php-ast being tested.
+ # Xdebug will have issues as PHP 8.1.0-dev/nightly's internal functionality changes.
+ - phpenv config-rm xdebug.ini || true
- phpize
- ./configure
- make
0 commit comments