-
Notifications
You must be signed in to change notification settings - Fork 15
/
composer.json
39 lines (39 loc) · 902 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
{
"name": "smuuf/primi",
"description": "A scripting language written in PHP & executable within PHP.",
"license": "MIT",
"type": "library",
"authors": [
{
"name": "Premysl Karbula",
"email": "premavansmuuf+github@gmail.com"
}
],
"support": {
"issues": "https://github.com/smuuf/primi/issues",
"source": "https://github.com/smuuf/primi"
},
"autoload":{
"psr-4": {
"Smuuf\\Primi\\": "src/",
"Smuuf\\Primi\\Tools\\BuildDocs\\": "tools/build-docs/src"
}
},
"require": {
"php": ">=8.0",
"ext-bcmath" : "*",
"ext-mbstring" : "*",
"smuuf/strict-object": "^1.0",
"smuuf/php-peg": "^3",
"smuuf/better-php-exceptions": "^0",
"symfony/polyfill-php80": "^1",
"symfony/polyfill-php81": "^1"
},
"require-dev": {
"nette/tester": "^2",
"phpstan/phpstan": "^1",
"smuuf/phpcb": "^0.5",
"nikic/php-parser": "^4.13",
"smuuf/php-docblock-parser": "^0.1"
}
}