-
Notifications
You must be signed in to change notification settings - Fork 9
/
composer.json
83 lines (83 loc) · 2.56 KB
/
composer.json
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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "composer-unused/symbol-parser",
"type": "library",
"description": "Toolkit to parse symbols from a composer package",
"keywords": [
"composer",
"symbol",
"parser"
],
"homepage": "https://github.com/composer-unused/symbol-parser",
"license": "MIT",
"authors": [
{
"name": "Andreas Frömer",
"email": "composer-unused@icanhazstring.com"
}
],
"require": {
"php": "^7.4 || ^8.0",
"composer-unused/contracts": "^0.1 || ^0.2",
"nikic/php-parser": "^4.15",
"phpstan/phpdoc-parser": "^1.12",
"psr/container": "^1.0 || ^2.0",
"psr/log": "^1.1 || ^2 || ^3",
"symfony/finder": "^4.4 || ^5.3 || ^6.0"
},
"require-dev": {
"ext-ds": "*",
"phpstan/phpstan": "^1.10",
"phpunit/phpunit": "^9.6.5",
"roave/security-advisories": "dev-master",
"squizlabs/php_codesniffer": "^3.7.2",
"symfony/serializer": "^5.4"
},
"config": {
"preferred-install": "dist",
"sort-packages": true
},
"autoload": {
"psr-4": {
"ComposerUnused\\SymbolParser\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"ComposerUnused\\SymbolParser\\Test\\Unit\\": "tests/Unit",
"ComposerUnused\\SymbolParser\\Test\\Integration\\": "tests/Integration",
"ComposerUnused\\SymbolParser\\Test\\Stubs\\": "tests/Stubs"
}
},
"scripts": {
"analyse": "phpstan analyse --no-progress",
"check": [
"@cs-check",
"@analyse",
"@test"
],
"cs-check": "phpcs --parallel=50",
"cs-fix": "phpcbf --parallel=50",
"test": "phpunit"
},
"scripts-descriptions": {
"analyse": "Use \"phpstan\" to the analyse static code. See phpstan.neon",
"check": "Check the coding covention and run the tests",
"cs-check": "Use \"phpcs\" to check the coding convention. See phpcs.xml",
"cs-fix": "Use \"phpcbf\" to fix the coding convention. See phpcs.xml",
"test": "Use \"phpunit\" to run the tests. See phpunit.xml"
},
"support": {
"issues": "https://github.com/composer-unused/symbol-parser/issues",
"source": "https://github.com/composer-unused/symbol-parser"
},
"funding": [
{
"type": "other",
"url": "https://paypal.me/icanhazstring"
},
{
"type": "github",
"url": "https://github.com/sponsors/icanhazstring"
}
]
}