-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
49 lines (49 loc) · 1001 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
49
{
"name": "filczek/php-polish-notation",
"version": "1.0.0",
"type": "library",
"description": "Overengineered, abstract implementation of Infix, Prefix & Postfix notation.",
"keywords": [
"php",
"npn",
"rpn",
"normal polish notation",
"reverse polish notation",
"polish notation",
"łukasiewicz notation",
"lukasiewicz notation",
"łukasiewicz logic",
"lukasiewicz logic",
"łukasiewicz",
"lukasiewicz",
"infix notation",
"prefix notation",
"postfix notation",
"infix",
"prefix",
"postfix",
"notation"
],
"license": "MIT",
"require": {
"php": "^8.2"
},
"require-dev": {
"phpunit/phpunit": "11.5.2"
},
"autoload": {
"psr-4": {
"Filczek\\PhpPolishNotation\\": "src/"
},
"exclude-from-classmap": [
"/tests/"
]
},
"autoload-dev": {
"psr-4": {
"Filczek\\PhpPolishNotation\\": "tests/"
}
},
"minimum-stability": "stable",
"prefer-stable": true
}