Skip to content

Commit 48eb542

Browse files
committed
Create base yii method reflection extenstion
1 parent de23410 commit 48eb542

File tree

9 files changed

+2793
-0
lines changed

9 files changed

+2793
-0
lines changed

composer.json

Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
{
2+
"name": "proget-hq/phpstan-yii2",
3+
"description": "Yii2 extension for PHPStan",
4+
"type": "library",
5+
"require": {
6+
"php": "^7.1"
7+
},
8+
"require-dev": {
9+
"phpunit/phpunit": "^7.0",
10+
"phpstan/phpstan": "^0.9.2",
11+
"phpstan/phpstan-phpunit": "^0.9.4"
12+
},
13+
"autoload": {
14+
"psr-4": {
15+
"Proget\\PHPStan\\Yii2\\": "src/"
16+
}
17+
},
18+
"autoload-dev": {
19+
"psr-4": {
20+
"Proget\\PHPStan\\Yii2\\": "tests/"
21+
}
22+
},
23+
"license": "MIT",
24+
"authors": [
25+
{
26+
"name": "Arkadiusz Kondas",
27+
"email": "arkadiusz.kondas@gmail.com"
28+
}
29+
],
30+
"scripts": {
31+
"tests": "phpunit",
32+
"stan": "phpstan analyse -l max -c ./phpstan.neon ./src ./tests",
33+
"check": [
34+
"@tests",
35+
"@stan"
36+
]
37+
}
38+
}

0 commit comments

Comments
 (0)