|
1 | 1 | { |
2 | | - "name": "phpunit/php-code-coverage", |
3 | | - "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.", |
4 | | - "type": "library", |
5 | | - "keywords": [ |
6 | | - "coverage", |
7 | | - "testing", |
8 | | - "xunit" |
9 | | - ], |
10 | | - "homepage": "https://github.com/sebastianbergmann/php-code-coverage", |
11 | | - "license": "BSD-3-Clause", |
12 | | - "authors": [ |
13 | | - { |
14 | | - "name": "Sebastian Bergmann", |
15 | | - |
16 | | - "role": "lead" |
17 | | - } |
18 | | - ], |
19 | | - "support": { |
20 | | - "issues": "https://github.com/sebastianbergmann/php-code-coverage/issues", |
21 | | - "security": "https://github.com/sebastianbergmann/php-code-coverage/security/policy" |
22 | | - }, |
23 | | - "config": { |
24 | | - "platform": { |
25 | | - "php": "8.3.0" |
26 | | - }, |
27 | | - "optimize-autoloader": true, |
28 | | - "sort-packages": true |
29 | | - }, |
30 | | - "prefer-stable": true, |
31 | | - "require": { |
32 | | - "php": ">=8.3", |
33 | | - "ext-dom": "*", |
34 | | - "ext-libxml": "*", |
35 | | - "ext-xmlwriter": "*", |
36 | | - "nikic/php-parser": "^5.6.1", |
37 | | - "phpunit/php-file-iterator": "^6.0", |
38 | | - "phpunit/php-text-template": "^5.0", |
39 | | - "sebastian/complexity": "^5.0", |
40 | | - "sebastian/environment": "^8.0.3", |
41 | | - "sebastian/lines-of-code": "^4.0", |
42 | | - "sebastian/version": "^6.0", |
43 | | - "theseer/tokenizer": "^1.2.3" |
44 | | - }, |
45 | | - "require-dev": { |
46 | | - "phpunit/phpunit": "^12.3.7" |
47 | | - }, |
48 | | - "suggest": { |
49 | | - "ext-pcov": "PHP extension that provides line coverage", |
50 | | - "ext-xdebug": "PHP extension that provides line coverage as well as branch and path coverage" |
51 | | - }, |
52 | | - "autoload": { |
53 | | - "classmap": [ |
54 | | - "src/" |
55 | | - ] |
56 | | - }, |
57 | | - "autoload-dev": { |
58 | | - "classmap": [ |
59 | | - "tests/" |
60 | | - ] |
| 2 | + "name": "phpunit/php-code-coverage", |
| 3 | + "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.", |
| 4 | + "type": "library", |
| 5 | + "keywords": [ |
| 6 | + "coverage", |
| 7 | + "testing", |
| 8 | + "xunit" |
| 9 | + ], |
| 10 | + "homepage": "https://github.com/sebastianbergmann/php-code-coverage", |
| 11 | + "license": "BSD-3-Clause", |
| 12 | + "authors": [ |
| 13 | + { |
| 14 | + "name": "Sebastian Bergmann", |
| 15 | + |
| 16 | + "role": "lead" |
| 17 | + } |
| 18 | + ], |
| 19 | + "support": { |
| 20 | + "issues": "https://github.com/sebastianbergmann/php-code-coverage/issues", |
| 21 | + "security": "https://github.com/sebastianbergmann/php-code-coverage/security/policy" |
| 22 | + }, |
| 23 | + "config": { |
| 24 | + "platform": { |
| 25 | + "php": "8.3.0" |
61 | 26 | }, |
62 | | - "extra": { |
63 | | - "branch-alias": { |
64 | | - "dev-main": "12.4.x-dev" |
65 | | - } |
| 27 | + "optimize-autoloader": true, |
| 28 | + "sort-packages": true |
| 29 | + }, |
| 30 | + "prefer-stable": true, |
| 31 | + "require": { |
| 32 | + "php": ">=8.3", |
| 33 | + "ext-dom": "*", |
| 34 | + "ext-libxml": "*", |
| 35 | + "ext-xmlwriter": "*", |
| 36 | + "nikic/php-parser": "^5.6.1", |
| 37 | + "phpunit/php-file-iterator": "^6.0", |
| 38 | + "phpunit/php-text-template": "^5.0", |
| 39 | + "sebastian/complexity": "^5.0", |
| 40 | + "sebastian/environment": "^8.0.3", |
| 41 | + "sebastian/lines-of-code": "^4.0", |
| 42 | + "sebastian/version": "^6.0", |
| 43 | + "theseer/tokenizer": "dev-writer as 1.3-dev" |
| 44 | + }, |
| 45 | + "require-dev": { |
| 46 | + "phpunit/phpunit": "^12.3.7" |
| 47 | + }, |
| 48 | + "suggest": { |
| 49 | + "ext-pcov": "PHP extension that provides line coverage", |
| 50 | + "ext-xdebug": "PHP extension that provides line coverage as well as branch and path coverage" |
| 51 | + }, |
| 52 | + "autoload": { |
| 53 | + "classmap": [ |
| 54 | + "src/" |
| 55 | + ] |
| 56 | + }, |
| 57 | + "autoload-dev": { |
| 58 | + "classmap": [ |
| 59 | + "tests/" |
| 60 | + ] |
| 61 | + }, |
| 62 | + "extra": { |
| 63 | + "branch-alias": { |
| 64 | + "dev-main": "12.4.x-dev" |
| 65 | + } |
| 66 | + }, |
| 67 | + "repositories": [ |
| 68 | + { |
| 69 | + "type": "vcs", |
| 70 | + "url": "https://github.com/staabm/tokenizer" |
66 | 71 | } |
| 72 | + ] |
67 | 73 | } |
0 commit comments