-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
95 lines (95 loc) · 1.89 KB
/
composer.json
File metadata and controls
95 lines (95 loc) · 1.89 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
94
95
{
"name": "inilim/tools",
"description": "",
"type": "library",
"autoload": {
"psr-4": {
"Inilim\\Tool\\": "src/"
},
"files": []
},
"extra": {
"exclude-from-files": [
"twig/*",
"phpunit/*",
"phpstan/*",
"myclabs/*"
]
},
"autoload-dev": {
"psr-4": {
"Inilim\\Tool\\Test\\": "tests/",
"Inilim\\Tool\\Build\\": "build/src/",
"Inilim\\Tool\\Bench\\": "bench/src/"
},
"files": []
},
"authors": [
{
"name": "inilim"
},
{
"name": "internet community"
}
],
"require": {
"php": ">=7.4",
"ext-mbstring": "*"
},
"suggest": {
"ext-zip": "TODO ...",
"ext-xml": "TODO ...",
"ext-intl": "TODO ...",
"ext-json": "TODO ..."
},
"minimum-stability": "dev",
"prefer-stable": true,
"require-dev": {
"inilim/dump": "dev-main",
"inilim/ipdo": "dev-main",
"phpunit/phpunit": "^9.6",
"twig/twig": "^3.11",
"mcaskill/composer-exclude-files": "^4.0",
"phpstan/phpstan": "^2.1",
"symfony/process": "^5.4",
"phpmetrics/phpmetrics": "^2.9",
"symfony/finder": "^5.4",
"inilim/php-code-minifier": "dev-main",
"mikey179/vfsstream": "^1.6"
},
"scripts": {
"build": [
"php build/build.php",
"php build/autoide.php"
],
"build:ide": [
"php build/autoide.php"
],
"build:method": [
"php build/build.php"
],
"unit": [
"php74 vendor/bin/phpunit"
],
"unit:check": [
"php74 vendor/bin/phpunit tests"
],
"phpmetrics:report": [
"php84 ./vendor/bin/phpmetrics --report-html=myreport ./src/Method"
],
"stan": [
"php74 vendor/bin/phpstan"
],
"stan:check": [
"php74 vendor/bin/phpstan analyze"
]
},
"config": {
"platform": {
"php": "7.4"
},
"allow-plugins": {
"mcaskill/composer-exclude-files": true
}
}
}