|
2 | 2 | "name": "php-deal/framework", |
3 | 3 | "description": "Design by Contract framework for PHP", |
4 | 4 | "require": { |
5 | | - "php": "~7.0", |
6 | | - "goaop/framework": "~2.0" |
| 5 | + "php": "^7.2", |
| 6 | + "goaop/framework": "^2.3" |
7 | 7 | }, |
8 | 8 | "require-dev": { |
9 | | - "symfony/console": "~2.7|~3.0", |
10 | | - "phpunit/phpunit": "^5.7", |
11 | | - "beberlei/assert": "~3.0" |
| 9 | + "beberlei/assert": "~3.0", |
| 10 | + "phpstan/phpstan": "^0.11.0", |
| 11 | + "phpunit/phpunit": "^7.5", |
| 12 | + "roave/security-advisories": "dev-master", |
| 13 | + "slevomat/coding-standard": "^4.8", |
| 14 | + "squizlabs/php_codesniffer": "^3.4", |
| 15 | + "symfony/console": "~2.7|~3.0|~4.0" |
12 | 16 | }, |
13 | 17 | "license": "MIT", |
14 | 18 | "authors": [ |
|
19 | 23 | { |
20 | 24 | "name": "Piotr Dawidiuk", |
21 | 25 | "email": "piotr.dawidiuk@gmail.com" |
| 26 | + }, |
| 27 | + { |
| 28 | + "name": "Andreas Frömer", |
| 29 | + "email": "blubb0r05+github@gmail.com" |
22 | 30 | } |
23 | 31 | ], |
24 | 32 | "autoload": { |
25 | | - "psr-4": {"PhpDeal\\": "src/"} |
| 33 | + "psr-4": { |
| 34 | + "PhpDeal\\": "src/" |
| 35 | + } |
26 | 36 | }, |
27 | 37 | "autoload-dev": { |
28 | | - "psr-0": {"Demo\\": "demo/"}, |
29 | | - "psr-4": {"PhpDeal\\": "tests/"} |
| 38 | + "psr-0": { |
| 39 | + "Demo\\": "demo/" |
| 40 | + }, |
| 41 | + "psr-4": { |
| 42 | + "PhpDeal\\": "tests/" |
| 43 | + } |
| 44 | + }, |
| 45 | + "scripts": { |
| 46 | + "phpstan": "phpstan analyze", |
| 47 | + "phpcs": "phpcs src tests -sp --colors", |
| 48 | + "phpunit": "phpunit --verbose --colors=always", |
| 49 | + "test": [ |
| 50 | + "@phpstan", |
| 51 | + "@phpcs", |
| 52 | + "@phpunit" |
| 53 | + ] |
| 54 | + }, |
| 55 | + "config": { |
| 56 | + "sort-packages": true |
30 | 57 | }, |
31 | 58 | "suggest": { |
32 | | - "beberlei/assert": "Thin assertion library for input validation in business models. Used for tests." |
| 59 | + "beberlei/assert": "Thin assertion library for input validation in business models. Used for tests." |
33 | 60 | }, |
34 | 61 | "support": { |
35 | | - "issues": "https://github.com/php-deal/framework/issues", |
36 | | - "source": "https://github.com/php-deal/framework", |
37 | | - "docs": "https://github.com/php-deal/framework/blob/master/README.md" |
| 62 | + "issues": "https://github.com/php-deal/framework/issues", |
| 63 | + "source": "https://github.com/php-deal/framework", |
| 64 | + "docs": "https://github.com/php-deal/framework/blob/master/README.md" |
38 | 65 | } |
39 | 66 | } |
0 commit comments