-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
64 lines (64 loc) · 1.73 KB
/
composer.json
File metadata and controls
64 lines (64 loc) · 1.73 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
{
"name": "hinyka/evalmath",
"description": "Use the EvalMath when you want to evaluate mathematical expressions from untrusted sources.",
"type": "library",
"keywords": [
"EvalMath",
"eval",
"math",
"expression",
"evaluator"
],
"license": "BSD-3-Clause",
"authors": [
{
"name": "Karel Hink",
"email": "info@karelhink.cz"
}
],
"support": {
"issues": "https://github.com/Hinyka/EvalMath/issues",
"source": "https://github.com/Hinyka/EvalMath"
},
"require": {
"php": ">=8.0"
},
"require-dev": {
"phpunit/phpunit": "^10.0",
"dealerdirect/phpcodesniffer-composer-installer": "^1.0",
"squizlabs/php_codesniffer": "^3.7.2",
"phpstan/phpstan": ">=1.10.0"
},
"autoload": {
"psr-4": {
"Hinyka\\EvalMath\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Hinyka\\EvalMath\\Tests\\": "tests/"
}
},
"extra": {
"branch-alias": {
"dev-main": "2.x-dev"
}
},
"scripts": {
"phpst": "phpstan analyse",
"test": "phpunit",
"phpcs": "phpcs -s -p --extensions=php --standard=phpcs.xml.dist src tests",
"phpcbf": "phpcbf -s -p --extensions=php --standard=phpcs.xml.dist src tests"
},
"scripts-descriptions": {
"phpst": "Analyze code with PHPStan",
"test": "Run all unit tests!",
"phpcs": "Analyze code with PHP CodeSniffer",
"phpcbf": "Fix coding standards with PHP Code Beautifier and Fixer"
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}