-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
50 lines (50 loc) · 1.5 KB
/
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
48
49
50
{
"name": "alexandre-daubois/phikl",
"type": "library",
"description": "Apple's Pkl language bridge for PHP",
"keywords": ["pkl", "apple", "pickle", "language", "configuration", "configuration-as-code"],
"license": "MIT",
"authors": [
{
"name": "Alexandre Daubois",
"email": "[email protected]"
}
],
"minimum-stability": "stable",
"prefer-stable": true,
"require": {
"php": ">=8.2",
"psr/simple-cache": "^3.0",
"symfony/console": "^6.4|^7.0",
"symfony/finder": "^6.4|^7.0",
"symfony/process": "^6.4|^7.0"
},
"config": {
"optimize-autoloader": true,
"preferred-install": {
"*": "dist"
},
"sort-packages": true
},
"suggest": {
"ext-apcu": "To use the APCu cache backend",
"ext-curl": "To be able to install Pkl CLI tool with the `install` command",
"ext-memcached": "To use the Memcached cache backend"
},
"bin": [
"phikl"
],
"autoload": {
"psr-4": { "Phikl\\": "src", "Phikl\\Tests\\": "tests" }
},
"scripts": {
"test": "./vendor/bin/phpunit --display-warnings",
"cs": "./vendor/bin/php-cs-fixer fix --config=.php-cs-fixer.php --diff --allow-risky=yes",
"stan": "vendor/bin/phpstan analyse src tests -l 8"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.58.1",
"phpstan/phpstan": "^1.11.4",
"phpunit/phpunit": "^10.5.20"
}
}