-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
76 lines (76 loc) · 1.96 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
{
"name": "open-code-modeling/php-filter",
"description": "Common PHP filters for code generation",
"license": "MIT",
"type": "library",
"keywords": [
"php",
"json",
"schema",
"code",
"generation"
],
"authors": [
{
"name": "Sandro Keil",
"homepage": "https://sandro-keil.de",
"role": "maintainer"
}
],
"support": {
"issues": "https://github.com/open-code-modeling/php-filter/issues",
"source": "https://github.com/open-code-modeling/php-filter"
},
"autoload": {
"psr-4": {
"OpenCodeModeling\\Filter\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"OpenCodeModelingTest\\Filter\\": "tests/"
}
},
"require": {
"php": "^7.4 || ^8.0"
},
"require-dev": {
"jangregor/phpstan-prophecy": "^0.8.0",
"laminas/laminas-filter": "^2.9",
"phpspec/prophecy-phpunit": "^2.0",
"phpunit/phpunit": "^9.5.0",
"prooph/php-cs-fixer-config": "^v0.4.0",
"psalm/plugin-phpunit": "^0.15.0",
"roave/security-advisories": "dev-master",
"vimeo/psalm": "^4.4"
},
"suggest": {
"laminas/laminas-filter": "If you want to use the FilterFactory"
},
"minimum-stability": "dev",
"prefer-stable": true,
"scripts": {
"check": [
"@cs",
"@test",
"@static-analysis"
],
"cs": "php-cs-fixer fix -v --diff --dry-run",
"cs-fix": "php-cs-fixer fix -v --diff",
"test": "phpunit --colors=always",
"test-coverage": "phpunit --colors=always --coverage-clover clover.xml",
"static-analysis": "psalm --shepherd --stats"
},
"config": {
"sort-packages": true,
"platform": {
}
},
"archive": {
"exclude": [
"build",
"phpunit.xml*",
"tests"
]
}
}