forked from khumbal/php-formula-interpreter
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
34 lines (32 loc) · 742 Bytes
/
composer.json
File metadata and controls
34 lines (32 loc) · 742 Bytes
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
{
"name": "simon-forb/php-formula-interpreter",
"description": "Formula interpreter for PHP",
"keywords": ["php"],
"license": "MIT",
"authors": [
{
"name": "mormat",
"email": "mormat@free.fr"
}
],
"require": {
"php": "^8.1|^8.0"
},
"require-dev": {
"phing/phing": "~2.16.1",
"symfony/class-loader": "2.1.*",
"phpunit/phpunit": "^9",
"friendsofphp/php-cs-fixer": "^v2"
},
"autoload": {
"psr-0": {
"FormulaInterpreter": "src/"
}
},
"autoload-dev": {
"psr-0": {
"Tests\\FormulaInterpreter": "tests/"
}
},
"minimum-stability": "dev"
}