Skip to content

Commit 86df0da

Browse files
committedNov 4, 2023
Rename phptl to type-lang
1 parent be5999b commit 86df0da

File tree

7 files changed

+18
-19
lines changed

7 files changed

+18
-19
lines changed
 

‎.gitattributes

-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
* text=auto eol=lf
22
*.pp eol=lf linguist-language=EBNF
33
*.pp2 eol=lf linguist-language=EBNF
4-
*.phptl eol=lf linguist-language=TypeScript
54

65
.editorconfig export-ignore
76
.php-cs-fixer.php export-ignore

‎.github/workflows/codestyle.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
git config --global core.autocrlf false
2020
git config --global core.eol lf
2121
- name: Checkout
22-
uses: actions/checkout@v3.3.0
22+
uses: actions/checkout@v4
2323
- name: Setup PHP ${{ matrix.php }}
2424
uses: shivammathur/setup-php@v2
2525
with:
@@ -30,13 +30,13 @@ jobs:
3030
id: composer-cache
3131
run: echo "::set-output name=dir::$(composer config cache-files-dir)"
3232
- name: Restore Composer Cache
33-
uses: actions/cache@v1
33+
uses: actions/cache@v3
3434
with:
3535
path: ${{ steps.composer-cache.outputs.dir }}
3636
key: ${{ runner.os }}-${{ matrix.php }}-composer-${{ hashFiles('**/composer.json') }}
3737
restore-keys: ${{ runner.os }}-${{ matrix.php }}-composer-
3838
- name: Install Dependencies
39-
uses: nick-invision/retry@v1
39+
uses: nick-invision/retry@v2
4040
with:
4141
timeout_minutes: 5
4242
max_attempts: 5

‎.github/workflows/security.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
git config --global core.autocrlf false
2222
git config --global core.eol lf
2323
- name: Checkout
24-
uses: actions/checkout@v3.3.0
24+
uses: actions/checkout@v4
2525
- name: Setup PHP ${{ matrix.php }}
2626
uses: shivammathur/setup-php@v2
2727
with:
@@ -32,13 +32,13 @@ jobs:
3232
id: composer-cache
3333
run: echo "::set-output name=dir::$(composer config cache-files-dir)"
3434
- name: Restore Composer Cache
35-
uses: actions/cache@v1
35+
uses: actions/cache@v3
3636
with:
3737
path: ${{ steps.composer-cache.outputs.dir }}
3838
key: ${{ runner.os }}-${{ matrix.php }}-composer-${{ hashFiles('**/composer.json') }}
3939
restore-keys: ${{ runner.os }}-${{ matrix.php }}-composer-
4040
- name: Install Dependencies
41-
uses: nick-invision/retry@v1
41+
uses: nick-invision/retry@v2
4242
with:
4343
timeout_minutes: 5
4444
max_attempts: 5

‎.github/workflows/static-analysis.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
git config --global core.autocrlf false
2020
git config --global core.eol lf
2121
- name: Checkout
22-
uses: actions/checkout@v3.3.0
22+
uses: actions/checkout@v4
2323
- name: Setup PHP ${{ matrix.php }}
2424
uses: shivammathur/setup-php@v2
2525
with:
@@ -30,13 +30,13 @@ jobs:
3030
id: composer-cache
3131
run: echo "::set-output name=dir::$(composer config cache-files-dir)"
3232
- name: Restore Composer Cache
33-
uses: actions/cache@v1
33+
uses: actions/cache@v3
3434
with:
3535
path: ${{ steps.composer-cache.outputs.dir }}
3636
key: ${{ runner.os }}-${{ matrix.php }}-composer-${{ hashFiles('**/composer.json') }}
3737
restore-keys: ${{ runner.os }}-${{ matrix.php }}-composer-
3838
- name: Install Dependencies
39-
uses: nick-invision/retry@v1
39+
uses: nick-invision/retry@v2
4040
with:
4141
timeout_minutes: 5
4242
max_attempts: 5

‎.github/workflows/tests.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
git config --global core.autocrlf false
2323
git config --global core.eol lf
2424
- name: Checkout
25-
uses: actions/checkout@v3.3.0
25+
uses: actions/checkout@v4
2626
- name: Setup PHP ${{ matrix.php }}
2727
uses: shivammathur/setup-php@v2
2828
with:
@@ -35,13 +35,13 @@ jobs:
3535
id: composer-cache
3636
run: echo "::set-output name=dir::$(composer config cache-files-dir)"
3737
- name: Restore Composer Cache
38-
uses: actions/cache@v1
38+
uses: actions/cache@v3
3939
with:
4040
path: ${{ steps.composer-cache.outputs.dir }}
4141
key: ${{ runner.os }}-${{ matrix.php }}-composer-${{ hashFiles('**/composer.json') }}
4242
restore-keys: ${{ runner.os }}-${{ matrix.php }}-composer-
4343
- name: Install Dependencies
44-
uses: nick-invision/retry@v1
44+
uses: nick-invision/retry@v2
4545
with:
4646
timeout_minutes: 5
4747
max_attempts: 5

‎README.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,10 @@
77
---
88

99
<p align="center">
10-
<a href="https://packagist.org/packages/phptl/parser"><img src="https://poser.pugx.org/phptl/parser/require/php?style=for-the-badge" alt="PHP 8.1+"></a>
11-
<a href="https://packagist.org/packages/phptl/parser"><img src="https://poser.pugx.org/phptl/parser/version?style=for-the-badge" alt="Latest Stable Version"></a>
12-
<a href="https://packagist.org/packages/phptl/parser"><img src="https://poser.pugx.org/phptl/parser/v/unstable?style=for-the-badge" alt="Latest Unstable Version"></a>
13-
<a href="https://raw.githubusercontent.com/php-type-language/parser/blob/master/LICENSE"><img src="https://poser.pugx.org/phptl/parser/license?style=for-the-badge" alt="License MIT"></a>
10+
<a href="https://packagist.org/packages/type-lang/parser"><img src="https://poser.pugx.org/type-lang/parser/require/php?style=for-the-badge" alt="PHP 8.1+"></a>
11+
<a href="https://packagist.org/packages/type-lang/parser"><img src="https://poser.pugx.org/type-lang/parser/version?style=for-the-badge" alt="Latest Stable Version"></a>
12+
<a href="https://packagist.org/packages/type-lang/parser"><img src="https://poser.pugx.org/type-lang/parser/v/unstable?style=for-the-badge" alt="Latest Unstable Version"></a>
13+
<a href="https://raw.githubusercontent.com/php-type-language/parser/blob/master/LICENSE"><img src="https://poser.pugx.org/type-lang/parser/license?style=for-the-badge" alt="License MIT"></a>
1414
</p>
1515
<p align="center">
1616
<a href="https://github.com/php-type-language/parser/actions"><img src="https://github.com/php-type-language/parser/workflows/tests/badge.svg"></a>
@@ -38,7 +38,7 @@ Type Language Parser is available as composer repository and can be installed
3838
using the following command in a root of your project:
3939

4040
```sh
41-
$ composer require phptl/parser
41+
$ composer require type-lang/parser
4242
```
4343

4444
## Quick Start

‎composer.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"name": "phptl/parser",
2+
"name": "type-lang/parser",
33
"type": "library",
44
"description": "PHP Type Language reference implementation",
55
"keywords": ["parser", "language", "php", "phpdoc"],

0 commit comments

Comments
 (0)
Please sign in to comment.