-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
45 lines (45 loc) · 1018 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
{
"name": "andersonrezende/formula-executor",
"description": "Formula converter and executor in string format",
"type": "library",
"license": "MIT",
"autoload": {
"psr-4": {
"Andersonrezende\\FormulaExecutor\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Andersonrezende\\Tests\\": "tests/"
}
},
"authors": [
{
"name": "Anderson Rezende",
"email": "[email protected]",
"role": "Developer",
"homepage": "https://github.com/AndersonRezende/"
}
],
"minimum-stability": "stable",
"keywords": [
"infix",
"postfix",
"expression",
"formula",
"converter",
"calculator",
"math"
],
"require": {
"php": ">=7.0"
},
"require-dev": {
"pestphp/pest": "^2.8"
},
"config": {
"allow-plugins": {
"pestphp/pest-plugin": true
}
}
}