-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
61 lines (61 loc) · 1.7 KB
/
composer.json
File metadata and controls
61 lines (61 loc) · 1.7 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
{
"name": "coddin-web/manifest-parser",
"description": "A simple plain PHP manifest parser which will return a Value Object to pass around in your application",
"keywords": ["coddin","php","manifest-parser"],
"homepage": "https://github.com/coddin-web/manifest-parser",
"type": "project",
"license": "MIT",
"minimum-stability": "stable",
"prefer-stable": true,
"require":{
"php": "^7.4|^8",
"ext-curl": "*",
"ext-json": "*",
"guzzlehttp/guzzle": "^5.3.3|^6.2.1|^7.0",
"thecodingmachine/safe": "^1.3"
},
"require-dev": {
"dg/bypass-finals": "^1.3",
"phpstan/phpstan": "^1.4",
"phpstan/phpstan-strict-rules": "^1.1",
"phpunit/phpunit": "^9.5",
"rregeer/phpunit-coverage-check": "^0.3.1",
"slevomat/coding-standard": "^7.0",
"squizlabs/php_codesniffer": "^3.6"
},
"config": {
"optimize-autoloader": true,
"preferred-install": {
"*": "dist"
},
"sort-packages": true
},
"autoload": {
"psr-4": {
"Coddin\\ManifestParser\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"scripts": {
"phpcs": "phpcs --standard=./phpcs_codestyle.xml -n src",
"phpcs-fix": "phpcbf --standard=./phpcs_codestyle.xml -n src",
"phpstan": "phpstan analyse --memory-limit=1G",
"phpunit": "vendor/bin/phpunit -c phpunit.xml.dist",
"phpunitwcov": "XDEBUG_MODE=coverage vendor/bin/phpunit -c phpunit.xml.dist --coverage-html reports/ --coverage-clover clover.xml",
"phpcoverage": "coverage-check clover.xml 100",
"checkup": [
"@phpcs",
"@phpstan",
"@phpunitwcov",
"@phpcoverage"
],
"coveragecheck": [
"@phpunitwcov",
"@phpcoverage"
]
}
}