Skip to content

Commit 52189a6

Browse files
committed
Update to Phan 5, switch from tslint to eslint
And upgrade various dependencies Closes GH-100
1 parent 5f570df commit 52189a6

File tree

10 files changed

+1340
-299
lines changed

10 files changed

+1340
-299
lines changed

.eslintrc.js

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
module.exports = {
2+
parserOptions: {
3+
sourceType: 'module',
4+
ecmaVersion: 2018,
5+
},
6+
root: true,
7+
parser: '@typescript-eslint/parser',
8+
plugins: [
9+
'@typescript-eslint',
10+
],
11+
extends: [
12+
'eslint:recommended',
13+
'plugin:@typescript-eslint/recommended',
14+
],
15+
};

.travis.yml

Lines changed: 4 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,26 +1,15 @@
11
language: php
22

3-
php:
4-
- 7.2
5-
- 7.3
6-
- 7.4
7-
- 8.0
8-
93
matrix:
10-
exclude:
4+
include:
115
- php: 7.4
126
env: NODE_VERSION=14
137
- php: 7.3
148
env: NODE_VERSION=10
15-
- php: 7.1
16-
env: NODE_VERSION=8
179
- php: 7.2
18-
env: NODE_VERSION=8
19-
20-
env:
21-
- NODE_VERSION=8
22-
- NODE_VERSION=10
23-
- NODE_VERSION=14
10+
env: NODE_VERSION=14
11+
- php: 8.0
12+
env: NODE_VERSION=12
2413

2514
cache:
2615
directories:

NEWS.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,11 @@
11
vscode-php-phan NEWS
22
====================
33

4+
### 5.0.0 (2021-08-10)
5+
6+
- Update Phan from 4.0.7 to 5.1.0
7+
- See [Phan's NEWS](https://github.com/phan/phan/blob/5.1.0/NEWS.md) for more details.
8+
49
### 4.0.1 (2021-06-26)
510

611
- Update Phan from 4.0.4 to 4.0.7

README.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,11 @@
22

33
[![Latest Release](https://vsmarketplacebadge.apphb.com/version-short/TysonAndre.php-phan.svg)](https://marketplace.visualstudio.com/items?itemName=TysonAndre.php-phan) [![Installs](https://vsmarketplacebadge.apphb.com/installs/TysonAndre.php-phan.svg)](https://marketplace.visualstudio.com/items?itemName=TysonAndre.php-phan) [![Rating](https://vsmarketplacebadge.apphb.com/rating-short/TysonAndre.php-phan.svg)](https://marketplace.visualstudio.com/items?itemName=TysonAndre.php-phan) [![Build Status](https://travis-ci.org/TysonAndre/vscode-php-phan.svg?branch=master)](https://travis-ci.org/TysonAndre/vscode-php-phan) [![Minimum PHP Version](https://img.shields.io/badge/php-%3E=7.2-8892BF.svg)](https://php.net/) [![Gitter](https://badges.gitter.im/phan/phan.svg)](https://gitter.im/phan/phan?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge)
44

5+
### 5.0.0 (2021-08-10)
6+
7+
- Update Phan from 4.0.7 to 5.1.0
8+
- See [Phan's NEWS](https://github.com/phan/phan/blob/5.1.0/NEWS.md) for more details.
9+
510
### 4.0.1 (2021-06-26)
611

712
- Update Phan from 4.0.4 to 4.0.7

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,6 @@
1010
},
1111
"require": {
1212
"php": "^7.2.0",
13-
"phan/phan": "4.0.7"
13+
"phan/phan": "5.1.0"
1414
}
1515
}

0 commit comments

Comments
 (0)