-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
71 lines (71 loc) · 2.1 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
{
"name": "open-code-modeling/php-code-generator-transformator",
"description": "Open Code Modeling PHP Code Generator Transformator",
"license": "MIT",
"type": "library",
"authors": [
{
"name": "Sandro Keil",
"homepage": "https://sandro-keil.de",
"role": "maintainer"
}
],
"support": {
"issues": "https://github.com/open-code-modeling/php-code-generator-transformator/issues",
"source": "https://github.com/open-code-modeling/php-code-generator-transformator"
},
"autoload": {
"psr-4": {
"OpenCodeModeling\\CodeGenerator\\Transformator\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"OpenCodeModelingTest\\CodeGenerator\\Transformator\\": "tests/"
}
},
"require": {
"ext-dom": "*"
},
"require-dev": {
"open-code-modeling/php-code-generator": "*",
"phpspec/prophecy-phpunit": "^2.0",
"phpstan/phpstan": "^0.12.33",
"phpstan/phpstan-strict-rules": "^0.12.4",
"phpunit/phpunit": "^9.2.6",
"prooph/php-cs-fixer-config": "^0.3",
"roave/security-advisories": "dev-master",
"squizlabs/php_codesniffer": "^3.4"
},
"suggest": {
"open-code-modeling/php-code-generator": "To use the static factory methods for Code Generator workflow configuration"
},
"minimum-stability": "dev",
"prefer-stable": true,
"scripts": {
"check": [
"@cs",
"@docheader",
"@test"
],
"docheader": "vendor/bin/docheader check src/ tests/",
"cs": "php-cs-fixer fix src -v --diff --dry-run",
"cs-fix": "php-cs-fixer fix src -v --diff",
"test": "vendor/bin/phpunit",
"analyse": "php vendor/bin/phpstan.phar analyse --no-interaction"
},
"config": {
"sort-packages": true,
"platform": {
}
},
"archive": {
"exclude": [
".coveralls.yml",
".travis.yml",
"build",
"phpunit.xml*",
"tests"
]
}
}