-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathcomposer.json
34 lines (34 loc) · 861 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
{
"name": "leongrdic/smplang",
"description": "A simple language written in PHP that evaluates expressions without eval",
"type": "library",
"license": "MIT",
"homepage": "https://github.com/leongrdic/php-smplang",
"require": {
"php": ">=8.0"
},
"require-dev": {
"pestphp/pest": "^1.21",
"friendsofphp/php-cs-fixer": "^v3.8"
},
"autoload": {
"psr-4": {
"Le\\SMPLang\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Le\\SMPLang\\Tests\\": "tests/"
}
},
"scripts": {
"test": "./vendor/bin/pest --no-coverage",
"test-coverage": "./vendor/bin/phpunit --coverage-html coverage"
},
"config": {
"sort-packages": true,
"allow-plugins": {
"pestphp/pest-plugin": true
}
}
}