|
1 | 1 | { |
2 | | - "name": "runopencode/sax", |
3 | | - "description": "XML SAX (JAVA like) parser", |
4 | | - "keywords": [ |
5 | | - "xml", |
6 | | - "sax", |
7 | | - "xml parser" |
8 | | - ], |
9 | | - "minimum-stability": "stable", |
10 | | - "license": "MIT", |
11 | | - "authors": [ |
12 | | - { |
13 | | - "name": "Nikola Svitlica a.k.a TheCelavi", |
14 | | - "email": "thecelavi@gmail.com", |
15 | | - "homepage": "http://www.runopencode.com" |
16 | | - } |
17 | | - ], |
18 | | - "require": { |
19 | | - "psr/http-message": "~1.0", |
20 | | - "roave/security-advisories": "dev-master" |
21 | | - }, |
22 | | - "autoload": { |
23 | | - "psr-4": { |
24 | | - "RunOpenCode\\Sax\\": "src/RunOpenCode/Sax" |
25 | | - } |
26 | | - }, |
27 | | - "require-dev": { |
28 | | - "php": ">=7", |
29 | | - "guzzlehttp/psr7": "~1.0", |
30 | | - "phpunit/phpunit": "~6.0", |
31 | | - "mockery/mockery": "~0.9|~1.0", |
32 | | - "squizlabs/php_codesniffer": "~2.0", |
33 | | - "phploc/phploc": "dev-master", |
34 | | - "pdepend/pdepend": "~2.5", |
35 | | - "phpmd/phpmd": "@stable", |
36 | | - "sebastian/phpcpd": "dev-master", |
37 | | - "theseer/phpdox": "dev-master", |
38 | | - "escapestudios/symfony2-coding-standard": "~2.0" |
39 | | - }, |
40 | | - "autoload-dev": { |
41 | | - "psr-4": { |
42 | | - "RunOpenCode\\Sax\\Test\\": "test/" |
43 | | - } |
44 | | - }, |
45 | | - "suggest": { |
46 | | - "guzzlehttp/psr7": "Provides PSR-7 StreamInterface implementation." |
| 2 | + "name": "runopencode/sax", |
| 3 | + "description": "XML SAX (JAVA like) parser", |
| 4 | + "keywords": [ |
| 5 | + "xml", |
| 6 | + "sax", |
| 7 | + "xml parser" |
| 8 | + ], |
| 9 | + "minimum-stability": "stable", |
| 10 | + "license": "MIT", |
| 11 | + "authors": [ |
| 12 | + { |
| 13 | + "name": "Nikola Svitlica a.k.a TheCelavi", |
| 14 | + "email": "thecelavi@gmail.com", |
| 15 | + "homepage": "http://www.runopencode.com" |
47 | 16 | } |
| 17 | + ], |
| 18 | + "require": { |
| 19 | + "psr/http-message": "~1.0", |
| 20 | + "roave/security-advisories": "dev-master", |
| 21 | + "ext-xml": "*", |
| 22 | + "ext-dom": "*", |
| 23 | + "ext-simplexml": "*" |
| 24 | + }, |
| 25 | + "autoload": { |
| 26 | + "psr-4": { |
| 27 | + "RunOpenCode\\Sax\\": "src/RunOpenCode/Sax" |
| 28 | + } |
| 29 | + }, |
| 30 | + "require-dev": { |
| 31 | + "php": ">=8.2", |
| 32 | + "guzzlehttp/psr7": "^2.6", |
| 33 | + "phpunit/phpunit": "^9.5", |
| 34 | + "mockery/mockery": "^1.6.11", |
| 35 | + "squizlabs/php_codesniffer": "^3.9.0", |
| 36 | + "phploc/phploc": "^2.0.5", |
| 37 | + "pdepend/pdepend": "^2.16.2", |
| 38 | + "phpmd/phpmd": "^2.15.0", |
| 39 | + "sebastian/phpcpd": "^2.0.1", |
| 40 | + "theseer/phpdox": "^0.7.0", |
| 41 | + "escapestudios/symfony2-coding-standard": "^3.13.0", |
| 42 | + "phpstan/phpstan": "^1.10.64", |
| 43 | + "vimeo/psalm": "^5.6.0" |
| 44 | + }, |
| 45 | + "autoload-dev": { |
| 46 | + "psr-4": { |
| 47 | + "RunOpenCode\\Sax\\Test\\": "test/" |
| 48 | + } |
| 49 | + }, |
| 50 | + "suggest": { |
| 51 | + "guzzlehttp/psr7": "Provides PSR-7 StreamInterface implementation." |
| 52 | + }, |
| 53 | + "scripts": { |
| 54 | + "phpunit": "XDEBUG_MODE=coverage vendor/bin/phpunit --coverage-html ./build/phpunit", |
| 55 | + "phpstan": "vendor/bin/phpstan analyse -l 9 src test", |
| 56 | + "psalm": "XDEBUG_MODE=off vendor/bin/psalm --no-diff" |
| 57 | + } |
48 | 58 | } |
0 commit comments