-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathcomposer.json
More file actions
93 lines (93 loc) · 2.29 KB
/
Copy pathcomposer.json
File metadata and controls
93 lines (93 loc) · 2.29 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
83
84
85
86
87
88
89
90
91
92
93
{
"name": "typephp/typephp",
"description": "Transparent Runtime type checker for PHP. Enforces PHPDoc annotations including generics, typed arrays, array shapes, and advanced types at runtime in development and production.",
"type": "library",
"license": "MIT",
"keywords": [
"type-checker",
"runtime-types",
"generics",
"typed-arrays",
"array-shapes",
"phpdoc",
"docblock",
"phpstan",
"psalm",
"strict-types",
"type-safety",
"runtime-generics",
"typephp"
],
"authors": [
{
"name": "Reymart A. Calicdan",
"email": "reymart.calicdan06@gmail.com"
}
],
"require": {
"php": "^8.1",
"phpstan/phpdoc-parser": "^2.0",
"nikic/php-parser": "^5.0"
},
"require-dev": {
"laravel/pint": "^1.10",
"pestphp/pest": "^2.0 || ^3.0 || ^4.0",
"phpstan/phpstan": "^2.1",
"phpstan/phpstan-strict-rules": "^2.0",
"phpstan/extension-installer": "^1.4",
"vimeo/psalm": "^6.16",
"carthage-software/mago": "^1.47",
"rector/rector": "^2.6",
"friendsofphp/php-cs-fixer": "^3.95"
},
"bin": [
"bin/typephp"
],
"autoload": {
"psr-4": {
"TypePHP\\": "src/"
},
"files": [
"src/bootstrap.php"
]
},
"autoload-dev": {
"psr-4": {
"TypePHP\\Tests\\": "tests/"
},
"files": [
"tests/Fixtures/Functions/MathUtils.php"
]
},
"scripts": {
"format": [
"./vendor/bin/pint"
],
"test": [
"./vendor/bin/pest --colors"
],
"analyze": [
"./vendor/bin/phpstan analyze"
],
"psalm": [
"./vendor/bin/psalm"
],
"mago": [
"./vendor/bin/mago analyze"
],
"rector": [
"./vendor/bin/rector process"
],
"rector:dry": [
"./vendor/bin/rector process --dry-run"
]
},
"minimum-stability": "dev",
"prefer-stable": true,
"config": {
"allow-plugins": {
"pestphp/pest-plugin": true,
"phpstan/extension-installer": true
}
}
}