Skip to content
This repository was archived by the owner on Sep 30, 2025. It is now read-only.

Commit 1706497

Browse files
committed
PHAR
1 parent 58cced3 commit 1706497

File tree

8 files changed

+4354
-0
lines changed

8 files changed

+4354
-0
lines changed

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
/vendor
2+
/composer.lock

phar-source/.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
/vendor

phar-source/box.json

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
{
2+
"alias": "download-phpstan.phar",
3+
"banner": false,
4+
"check-requirements": false,
5+
"force-autodiscovery": true,
6+
"output": "../phpstan.phar"
7+
}

phar-source/composer.json

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
{
2+
"require": {
3+
"php": "^7.4 || ^8.0",
4+
"splitbrain/php-archive": "^1.4"
5+
},
6+
"require-dev": {
7+
"humbug/box": "^4.6"
8+
},
9+
"autoload": {
10+
"psr-4": {
11+
"DownloadPHPStanPhar\\": ["src/"]
12+
}
13+
},
14+
"bin": [
15+
"download-phpstan"
16+
]
17+
}

0 commit comments

Comments
 (0)