-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
82 lines (82 loc) · 1.79 KB
/
composer.json
File metadata and controls
82 lines (82 loc) · 1.79 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "sidux/php-generator",
"description": "PHP Generator",
"keywords": [
"php",
"code",
"generator"
],
"license": [],
"authors": [
{
"name": "Ahmed Lebbada"
}
],
"require": {
"php": ">=7.4",
"roave/better-reflection": "^4.0@dev",
"phpdocumentor/type-resolver": "^1.0@dev"
},
"require-dev": {
"php-coveralls/php-coveralls": "^2.4",
"phpstan/phpstan": "^0.12.0@dev",
"phpunit/phpcov": "^8.2",
"phpunit/phpunit": "^9.2@dev",
"roave/security-advisories": "dev-master",
"symfony/var-dumper": "^5.2@dev",
"symplify/changelog-linker": "^8.3",
"symplify/easy-coding-standard": "^10.2",
"vimeo/psalm": "^4.0@dev"
},
"autoload": {
"psr-4": {
"Sidux\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Sidux\\": "tests/"
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"scripts": {
"complete-check": [
"@check-cs",
"@check-code",
"@test-code"
],
"check-cs": [
"vendor/bin/ecs check --ansi",
"vendor/bin/ecs check-markdown README.md --ansi"
],
"fix-cs": [
"vendor/bin/ecs check --fix --ansi",
"vendor/bin/ecs check-markdown README.md --fix --ansi"
],
"check-code": [
"@psalm",
"@phpstan"
],
"test-code": [
"@phpunit"
],
"phpunit": "phpunit",
"psalm": "psalm --threads=4 --shepherd",
"phpstan": "vendor/bin/phpstan analyse --ansi",
"changelog": [
"vendor/bin/changelog-linker dump-merges --in-categories --ansi",
"vendor/bin/changelog-linker link --ansi",
"vendor/bin/changelog-linker cleanup --ansi"
]
},
"config": {
"sort-packages": true,
"process-timeout": 0
},
"extra": {
"branch-alias": {
"dev-master": "1.0.0-alpha"
}
}
}