Skip to content

Commit 5c3a438

Browse files
committed
Initial commit.
1 parent 06dd880 commit 5c3a438

5 files changed

Lines changed: 2474 additions & 0 deletions

File tree

composer.json

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
{
2+
"name": "xactsystems/phpstan-dev",
3+
"description": "Package to extract and provide PHPStan source code for developing custom rules",
4+
"type": "composer-plugin",
5+
"version": "1.0.0",
6+
"require": {
7+
"php": "^7.4 || ^8.0",
8+
"phpstan/phpstan": "^1.10",
9+
"composer-plugin-api": "^2.0"
10+
},
11+
"license": "MIT",
12+
"autoload": {
13+
"psr-4": {
14+
"Xact\\PHPStan\\": "src/",
15+
"PHPStan\\": "phpstan/src"
16+
}
17+
},
18+
"authors": [
19+
{
20+
"name": "Ian Foulds",
21+
"email": "ianfoulds@x-act.co.uk"
22+
}
23+
],
24+
"extra": {
25+
"class": "Xact\\PHPStan\\Plugin"
26+
},
27+
"require-dev": {
28+
"composer/composer": "^2.5"
29+
}
30+
}

0 commit comments

Comments
 (0)