-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
36 lines (36 loc) · 869 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
{
"name": "jonasgeiler/brainfuck",
"description": "An optimizing Brainfuck parser & interpreter written in PHP",
"type": "project",
"homepage": "https://github.com/jonasgeiler/brainfuck-php#readme",
"license": "MIT",
"authors": [
{
"name": "Jonas Geiler",
"email": "[email protected]",
"homepage": "https://jonasgeiler.com"
}
],
"support": {
"issues": "https://github.com/jonasgeiler/brainfuck-php/issues"
},
"require": {
"php": ">=8.2"
},
"autoload": {
"psr-4": {
"Brainfuck\\": "src/"
}
},
"bin": [
"bin/bf"
],
"prefer-stable": true,
"keywords": [
"experiment",
"brainfuck",
"brainfuck-parser",
"brainfuck-interpreter",
"brainfuck-optimizer"
]
}