generated from biurad/php-starter
-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
61 lines (61 loc) · 1.85 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
51
52
53
54
55
56
57
58
59
60
61
{
"name": "divineniiquaye/php-invoker",
"description": "A library that provides the abilities to invoking callables with named parameters in a generic and extensible way.",
"type": "library",
"keywords": ["biurad","invoker","resolver","php7"],
"homepage": "https://www.biurad.com",
"license": "BSD-3-Clause",
"authors": [
{
"name": "Divine Niiquaye Ibok",
"email": "[email protected]"
},
{
"name": "Biurad Lap Community",
"homepage": "https://biurad.com/projects/contributors"
}
],
"support": {
"docs": "https://docs.biurad.com/php-invoker/",
"issues": "https://github.com/divineniiquaye/php-invoker/issues",
"rss": "https://github.com/divineniiquaye/php-invoker/releases.atom",
"source": "https://github.com/divineniiquaye/php-invoker"
},
"require": {
"php": "^7.1 || ^8.0",
"psr/container": "^1.1|^2.0",
"symfony/polyfill-php80": "^1.20"
},
"require-dev": {
"composer/package-versions-deprecated": "^1.11",
"phpstan/phpstan": "^0.12",
"phpstan/phpstan-strict-rules": "^0.12",
"phpunit/phpunit": "^8.5 || ^9.5",
"squizlabs/php_codesniffer": "^3.5",
"vimeo/psalm": "^3.11 || 4.4.*"
},
"autoload": {
"psr-4": {
"DivineNii\\Invoker\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"DivineNii\\Invoker\\Tests\\": "tests/"
}
},
"scripts": {
"phpcs": "phpcs -q",
"phpstan": "phpstan analyse",
"psalm": "psalm --show-info=true",
"phpunit": "phpunit --no-coverage",
"test": [
"@phpcs",
"@phpstan",
"@psalm",
"@phpunit"
]
},
"minimum-stability": "dev",
"prefer-stable": true
}