-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
49 lines (49 loc) · 1.1 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
{
"name": "infuse-di/infuse",
"description": "A PSR-11 compliant dependency injection library",
"type": "library",
"license": "MIT",
"homepage": "https://github.com/davisenra/infuse",
"keywords": [
"psr-11",
"di",
"dependency injection"
],
"version": "1.1.0",
"authors": [
{
"name": "Davi Senra",
"email": "[email protected]",
"homepage": "https://davisenra.com.br",
"role": "Developer"
}
],
"autoload": {
"psr-4": {
"Infuse\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"scripts": {
"lint": "vendor/bin/phpstan analyse --memory-limit=2G",
"format": "PHP_CS_FIXER_IGNORE_ENV=true vendor/bin/php-cs-fixer check",
"test": "vendor/bin/phpunit --coverage-text"
},
"config": {
"sort-packages": true
},
"require": {
"php": "8.2.*|8.3.*|8.4.*",
"psr/container": "^2.0.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.65",
"phpstan/phpstan": "^1.12.13",
"phpunit/phpunit": "^11.5.2",
"robiningelbrecht/phpunit-pretty-print": "^1.3.1"
}
}