-
Notifications
You must be signed in to change notification settings - Fork 3
/
composer.json
41 lines (41 loc) · 1.17 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
{
"name": "jolicode/php-os-helper",
"description": "Helpers to detect the OS of the machine where PHP is running.",
"keywords": ["php", "os", "linux", "windows", "osx"],
"license": "MIT",
"type": "library",
"authors": [
{
"name": "Loïck Piera",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"JoliCode\\PhpOsHelper\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"JoliCode\\PhpOsHelper\\tests\\": "tests/"
}
},
"require": {
"php": ">=8.1"
},
"config": {
"sort-packages": true,
"platform": {
"php": "8.1.19"
}
},
"require-dev": {
"symfony/phpunit-bridge": "^6.3.1"
},
"scripts": {
"test": "vendor/bin/simple-phpunit",
"cs": "tools/php-cs-fixer/vendor/bin/php-cs-fixer fix --config tools/php-cs-fixer/.php-cs-fixer.php",
"cs-check": "tools/php-cs-fixer/vendor/bin/php-cs-fixer fix --config tools/php-cs-fixer/.php-cs-fixer.php --dry-run",
"phpstan": "tools/phpstan/vendor/bin/phpstan analyse --configuration=tools/phpstan/phpstan.neon"
}
}