-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
33 lines (33 loc) · 970 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
{
"name": "4irik/simple-lisp",
"autoload": {
"psr-4": {
"Che\\SimpleLisp\\": "src/"
},
"files": [
"src/parser.php",
"src/eval.php",
"src/env.php"
]
},
"autoload-dev": {
"psr-4": {
"Test\\": "tests/"
}
},
"scripts": {
"test": "@php vendor/bin/phpunit -c phpunit.xml --display-errors --display-notices --display-warnings tests",
"test-current": "@php vendor/bin/phpunit -c phpunit.xml --display-errors --display-notices --display-warnings --exclude-group ignore tests",
"type-check": "@php vendor/bin/phpstan analyse -c phpstan.neon",
"style-fix": "@php vendor/bin/php-cs-fixer fix"
},
"require-dev": {
"phpstan/phpstan": "^1.10",
"phpunit/phpunit": "^11",
"friendsofphp/php-cs-fixer": "^3.5"
},
"require": {
"php": "^8.3",
"ext-readline": "*"
}
}