-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
47 lines (47 loc) · 1022 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
{
"name": "kennedytedesco/monkey",
"description": "Monkey Programming Language",
"license": "MIT",
"require-dev": {
"laravel/pint": "^1.18.3",
"pestphp/pest": "^v3.7.1",
"phpstan/phpstan": "^2.0.3",
"rector/rector": "^2.0.3"
},
"require": {
"php": "^8.4",
"ext-readline": "*",
"symfony/console": "^7.2"
},
"autoload": {
"psr-4": {
"MonkeyLang\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"scripts": {
"test": "./vendor/bin/pest --parallel",
"fix": [
"@rector",
"@pint"
],
"pint": "vendor/bin/pint",
"rector": "vendor/bin/rector process src",
"check": "phpstan analyse -c phpstan.neon --memory-limit=2G"
},
"config": {
"optimize-autoloader": true,
"preferred-install": "dist",
"sort-packages": true,
"allow-plugins": {
"pestphp/pest-plugin": true,
"phpstan/extension-installer": true
}
},
"minimum-stability": "dev",
"prefer-stable": true
}