-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathcomposer.json
More file actions
64 lines (64 loc) · 1.75 KB
/
composer.json
File metadata and controls
64 lines (64 loc) · 1.75 KB
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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"name": "benit8/php-bin-template",
"description": "A template repository to bootstrap your PHP async scripts.",
"type": "project",
"authors": [
{
"name": "Benoît Lormeau",
"email": "blormeau@outlook.com"
}
],
"require": {
"php": ">=8.1",
"amphp/amp": "^3",
"amphp/file": "^3",
"amphp/http-client": "^5",
"amphp/log": "^2",
"amphp/mysql": "^3",
"illuminate/config": "^10",
"illuminate/container": "^10",
"symfony/dotenv": "^6.2"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3",
"php-parallel-lint/php-parallel-lint": "^1",
"phpstan/phpstan": "^1",
"phpunit/phpunit": "^9",
"symfony/var-dumper": "^6.2"
},
"autoload": {
"psr-4": {
"PhpBinTemplate\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"scripts": {
"docs": "phpdoc -c tools/phpdoc.xml",
"lint": [
"@lint:parallel",
"@lint:cs-fixer",
"@lint:stan"
],
"lint:cs-fixer": "@lint:fix --dry-run --diff",
"lint:fix": "php-cs-fixer fix --config=tools/php-cs-fixer.php --allow-risky=yes",
"lint:parallel": "parallel-lint --exclude vendor src tests",
"lint:stan": "phpstan analyse -c tools/phpstan.neon",
"tests": "phpunit -c tools/phpunit.xml tests"
},
"minimum-stability": "beta",
"config": {
"platform": {
"php": "8.1.9"
},
"optimize-autoloader": true,
"sort-packages": true,
"allow-plugins": {
"phpdocumentor/shim": true,
"phpro/grumphp": true
}
}
}