Skip to content

Commit ad46364

Browse files
committed
Merge branch 'master' into php8
2 parents 27abcb2 + bec91a5 commit ad46364

File tree

139 files changed

+15534
-15807
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

139 files changed

+15534
-15807
lines changed

.circleci/config.yml

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
# This config is equivalent to both the '.circleci/extended/orb-free.yml' and the base '.circleci/config.yml'
2+
version: 2.1
3+
4+
# Orbs are reusable packages of CircleCI configuration that you may share across projects, enabling you to create encapsulated, parameterized commands, jobs, and executors that can be used across multiple projects.
5+
# See: https://circleci.com/docs/2.0/orb-intro/
6+
orbs:
7+
node: circleci/[email protected]
8+
9+
# Invoke jobs via workflows
10+
# See: https://circleci.com/docs/2.0/configuration-reference/#workflows
11+
workflows:
12+
sample: # This is the name of the workflow, feel free to change it to better match your workflow.
13+
# Inside the workflow, you define the jobs you want to run.
14+
jobs:
15+
- node/test:
16+
# This is the node version to use for the `cimg/node` tag
17+
# Relevant tags can be found on the CircleCI Developer Hub
18+
# https://circleci.com/developer/images/image/cimg/node
19+
version: '16.10'
20+
# If you are using yarn, change the line below from "npm" to "yarn"
21+
pkg-manager: npm

.github/dependabot.yml

Lines changed: 69 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,69 @@
1+
version: 2
2+
updates:
3+
- package-ecosystem: npm
4+
directory: "/"
5+
schedule:
6+
interval: daily
7+
time: "04:00"
8+
open-pull-requests-limit: 10
9+
ignore:
10+
- dependency-name: webpack
11+
versions:
12+
- 5.31.0
13+
- 5.31.2
14+
- 5.32.0
15+
- 5.33.2
16+
- 5.34.0
17+
- 5.35.0
18+
- 5.35.1
19+
- dependency-name: eslint-plugin-jest
20+
versions:
21+
- 24.1.3
22+
- 24.1.4
23+
- 24.1.5
24+
- 24.1.8
25+
- 24.1.9
26+
- 24.2.0
27+
- 24.2.1
28+
- 24.3.1
29+
- 24.3.2
30+
- 24.3.4
31+
- 24.3.5
32+
- dependency-name: "@babel/core"
33+
versions:
34+
- 7.12.10
35+
- 7.12.13
36+
- 7.12.16
37+
- 7.12.17
38+
- 7.13.1
39+
- 7.13.10
40+
- 7.13.13
41+
- 7.13.15
42+
- 7.13.8
43+
- dependency-name: husky
44+
versions:
45+
- 4.3.8
46+
- 5.0.9
47+
- 5.1.0
48+
- 5.1.1
49+
- 5.1.2
50+
- 5.1.3
51+
- 5.2.0
52+
- dependency-name: "@babel/preset-env"
53+
versions:
54+
- 7.12.11
55+
- 7.12.13
56+
- 7.12.16
57+
- 7.12.17
58+
- 7.13.0
59+
- 7.13.10
60+
- 7.13.5
61+
- 7.13.8
62+
- 7.13.9
63+
- dependency-name: webpack-cli
64+
versions:
65+
- 4.4.0
66+
- 4.5.0
67+
- dependency-name: node-notifier
68+
versions:
69+
- 8.0.1

.travis.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
language: node_js
22
node_js:
33
- '10'
4+
- '12'
5+
- '13'
46
cache:
57
bundler: true
68
directories:

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<h1 align="center">php-parser</h1>
22
<p align="center">
3-
<a href="https://travis-ci.org/glayzzle/php-parser"><img src="https://api.travis-ci.org/glayzzle/php-parser.svg?branch=2.2.0"></a>
3+
<a href="https://circleci.com/gh/glayzzle/php-parser/tree/master"><img src="https://circleci.com/gh/glayzzle/php-parser/tree/master.svg?style=svg"></a>
44
<a href="https://coveralls.io/github/glayzzle/php-parser?branch=master"><img src="https://coveralls.io/repos/github/glayzzle/php-parser/badge.svg?branch=master&v=20170115" alt="Coverage Status" /></a>
55
<a title="npm version" href="https://www.npmjs.com/package/php-parser"><img src="https://badge.fury.io/js/php-parser.svg"></a>
66
<a title="npm downloads" href="https://www.npmjs.com/package/php-parser"><img src="https://img.shields.io/npm/dm/php-parser.svg?style=flat"></a>

0 commit comments

Comments
 (0)