generated from MarwanAlsoltany/php-package
-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
106 lines (106 loc) · 3.17 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
{
"name": "marwanalsoltany/mighty",
"type": "library",
"license": "MIT",
"description": "The last validation library you will ever need!",
"keywords": [
"php",
"library",
"validation",
"rules",
"attributes",
"annotations",
"expression",
"expressive",
"framework",
"framework-agnostic"
],
"authors": [
{
"name": "Marwan Al-Soltany",
"email": "[email protected]"
}
],
"funding": [
{
"type": "ko-fi",
"url": "https://ko-fi.com/marwanalsoltany"
}
],
"homepage": "https://github.com/MarwanAlsoltany/mighty/blob/master/README.md",
"support": {
"docs": "https://marwanalsoltany.github.io/mighty/docs/api",
"source": "https://github.com/MarwanAlsoltany/mighty",
"issues": "https://github.com/MarwanAlsoltany/mighty/issues"
},
"require": {
"php": ">=8.1",
"ext-mbstring": "*",
"ext-ctype": "*",
"ext-json": "*",
"ext-dom": "*",
"ext-intl": "*"
},
"require-dev": {
"phpunit/phpunit": "^9.5",
"phpbench/phpbench": "^1.2",
"phpstan/phpstan": "^1.8",
"friendsofphp/php-cs-fixer": "^3.9",
"code-lts/doctum": "^5.5"
},
"autoload": {
"psr-4": {
"MAKS\\Mighty\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"MAKS\\Mighty\\": "tests"
}
},
"extra": {
"branch-alias": {
"dev-master": "1.2-dev"
}
},
"scripts": {
"start": "printf '\\n!\\n!\\t\\033[0;36m%s\\033[0m\\n!\\n\\n' \"Started Build\"",
"finish": "printf '\\n!\\n!\\t\\033[0;32m%s\\033[0m\\n!\\n\\n' \"Finished Build\"",
"separate": "printf '\\n!\\n!\\t\\033[0;33m%s\\033[0m\\n!\\n\\n' \"---------------------\"",
"php-cs-fixer": "vendor/bin/php-cs-fixer fix --verbose --config=.php-cs-fixer.dist.php --diff --dry-run --allow-risky=yes --show-progress=none",
"phpstan": "vendor/bin/phpstan analyze --verbose --configuration=phpstan.neon.dist",
"phpunit": "vendor/bin/phpunit --verbose --configuration=phpunit.xml.dist",
"phpbench": "vendor/bin/phpbench run --verbose --config=phpbench.json.dist --report=overview",
"doctum": "php vendor/bin/doctum.php update .doctum.dist.php --verbose --force --no-progress || printf '\\n%s' ''",
"fix": "@php-cs-fixer",
"analyze": "@phpstan",
"test": "@phpunit",
"bench": "@phpbench",
"document": "@doctum",
"build": [
"@start",
"@fix",
"@separate",
"@analyze",
"@separate",
"@test",
"@separate",
"@bench",
"@separate",
"@document",
"@finish"
],
"build-quite": [
"@start",
"composer run-script build --quiet",
"@finish"
]
},
"config": {
"optimize-autoloader": true,
"sort-packages": false,
"process-timeout": 0
},
"prefer-stable": true,
"minimum-stability": "stable"
}