-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
79 lines (79 loc) · 2.28 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
{
"name": "open-code-modeling/json-schema-to-php-ast",
"description": "Provides factories to create PhpParser node visitors from JSON schema e. g. value objects",
"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/json-schema-to-php-ast/issues",
"source": "https://github.com/open-code-modeling/json-schema-to-php-ast"
},
"autoload": {
"psr-4": {
"OpenCodeModeling\\JsonSchemaToPhpAst\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"OpenCodeModelingTest\\JsonSchemaToPhpAst\\": "tests/"
}
},
"require": {
"php": "^7.4 || ^8.0",
"open-code-modeling/json-schema-to-php": "^0.3.0 || 0.4.x-dev",
"open-code-modeling/php-code-ast": "^0.13.0 || 0.13.x-dev"
},
"require-dev": {
"ext-json": "*",
"laminas/laminas-filter": "^2.9",
"open-code-modeling/php-filter": "^0.1.1",
"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": {
"open-code-modeling/php-filter": "For pre-configured filters for proper class / method / property names etc."
},
"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"
]
}
}