This repository has been archived by the owner on Feb 12, 2022. It is now read-only.
generated from biurad/php-starter
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
66 lines (66 loc) · 2 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
62
63
64
65
66
{
"name": "biurad/dependency-injection",
"description": "A library that allows you to standardize and centralize the way objects are constructed in your application.",
"type": "library",
"keywords": ["biurad","nette","dependency-injection","container","php"],
"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-dependency-injection/",
"issues": "https://github.com/biurad/php-dependency-injection/issues",
"rss": "https://github.com/biurad/php-dependency-injection/releases.atom",
"source": "https://github.com/biurad/php-dependency-injection"
},
"require": {
"php": "^7.2 || ^8.0",
"contributte/di": "^0.4.2 || ^0.5.0",
"psr/container": "^1.0 || ^2.0"
},
"require-dev": {
"composer/package-versions-deprecated": "^1.11",
"phpstan/phpstan": "^0.12",
"phpstan/phpstan-strict-rules": "^0.12",
"phpunit/phpunit": "^8.5 || ^9.4",
"squizlabs/php_codesniffer": "^3.5",
"vimeo/psalm": "^3.11 || ^4.0"
},
"autoload": {
"psr-4": {
"Biurad\\DependencyInjection\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Biurad\\DependencyInjection\\Tests\\": "tests/"
}
},
"extra": {
"branch-alias": {
"dev-master": "1.x-dev"
}
},
"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
}