|
1 | 1 | {
|
2 |
| - "name": "lookyman/phpstan-symfony", |
3 |
| - "license": "MIT", |
4 |
| - "description": "Symfony extension for PHPStan", |
5 |
| - "keywords": ["PHPStan", "Symfony"], |
| 2 | + "name": "phpstan/phpstan-symfony", |
| 3 | + "description": "Symfony Framework extensions and rules for PHPStan", |
| 4 | + "license": ["MIT"], |
6 | 5 | "authors": [
|
7 | 6 | {
|
8 | 7 | "name": "Lukáš Unger",
|
9 | 8 |
|
10 | 9 | "homepage": "https://lookyman.net"
|
11 | 10 | }
|
12 | 11 | ],
|
| 12 | + "minimum-stability": "dev", |
| 13 | + "prefer-stable": true, |
| 14 | + "extra": { |
| 15 | + "branch-alias": { |
| 16 | + "dev-master": "0.10-dev" |
| 17 | + } |
| 18 | + }, |
13 | 19 | "require": {
|
14 | 20 | "php": "^7.1",
|
15 |
| - "phpstan/phpstan": "^0.9.2" |
| 21 | + "phpstan/phpstan": "^0.10" |
16 | 22 | },
|
17 | 23 | "require-dev": {
|
18 |
| - "jakub-onderka/php-parallel-lint": "^0.9.2", |
19 |
| - "phpunit/phpunit": "^6.4 || ^7.0", |
20 |
| - "phpstan/phpstan-phpunit": "^0.9.0", |
21 |
| - "symfony/framework-bundle": "^4.0", |
22 |
| - "phpstan/phpstan-strict-rules": "^0.9.0", |
23 |
| - "lookyman/coding-standard": "0.1.0" |
| 24 | + "consistence/coding-standard": "^3.0.1", |
| 25 | + "jakub-onderka/php-parallel-lint": "^1.0", |
| 26 | + "dealerdirect/phpcodesniffer-composer-installer": "^0.4.4", |
| 27 | + "phpunit/phpunit": "^7.0", |
| 28 | + "phing/phing": "^2.16.0", |
| 29 | + "phpstan/phpstan-strict-rules": "^0.10", |
| 30 | + "satooshi/php-coveralls": "^1.0", |
| 31 | + "slevomat/coding-standard": "^4.5.2", |
| 32 | + "phpstan/phpstan-phpunit": "^0.10", |
| 33 | + "symfony/framework-bundle": "^4.0" |
24 | 34 | },
|
25 | 35 | "autoload": {
|
26 | 36 | "psr-4": {
|
27 |
| - "Lookyman\\PHPStan\\Symfony\\": "src/" |
| 37 | + "PHPStan\\": "src/" |
28 | 38 | }
|
29 | 39 | },
|
30 | 40 | "autoload-dev": {
|
31 |
| - "psr-4": { |
32 |
| - "Lookyman\\PHPStan\\Symfony\\": "tests/" |
33 |
| - } |
34 |
| - }, |
35 |
| - "scripts": { |
36 |
| - "lint": "parallel-lint ./src ./tests", |
37 |
| - "cs": "phpcs --colors --extensions=php --encoding=utf-8 -sp ./src ./tests", |
38 |
| - "tests": "phpunit --coverage-text", |
39 |
| - "stan": "phpstan analyse -l max -c ./phpstan.neon ./src ./tests", |
40 |
| - "check": [ |
41 |
| - "@lint", |
42 |
| - "@cs", |
43 |
| - "@tests", |
44 |
| - "@stan" |
45 |
| - ] |
| 41 | + "classmap": ["tests/"] |
46 | 42 | }
|
47 | 43 | }
|
0 commit comments