-
Notifications
You must be signed in to change notification settings - Fork 50
/
composer.json
48 lines (47 loc) · 961 Bytes
/
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
{
"name": "nxp/math-executor",
"description": "Simple math expressions calculator",
"minimum-stability": "stable",
"keywords": [
"math",
"parser",
"expression",
"calculator",
"formula",
"mathmatics"
],
"homepage": "http://github.com/NeonXP/MathExecutor",
"license": "MIT",
"authors": [
{
"name": "Alexander 'NeonXP' Kiryukhin",
"email": "[email protected]"
},
{
"name": "Bruce Wells",
"email": "[email protected]"
}
],
"scripts": {
"test": "vendor/bin/phpunit --colors=always",
"test-coverage": "vendor/bin/phpunit --coverage-html coverage"
},
"require": {
"php": ">=8.0 <8.5"
},
"require-dev": {
"phpunit/phpunit": ">=9.0",
"friendsofphp/php-cs-fixer": "^3.8",
"phpstan/phpstan": "^1.9"
},
"autoload": {
"psr-4": {
"NXP\\": "src/NXP"
}
},
"autoload-dev": {
"psr-4": {
"NXP\\Tests\\": "tests/"
}
}
}