-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
72 lines (72 loc) · 1.61 KB
/
composer.json
File metadata and controls
72 lines (72 loc) · 1.61 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
65
66
67
68
69
70
71
72
{
"name": "atomic/container",
"description": "Lightweight PSR-11 dependency injection container with compile-time compilation",
"type": "library",
"homepage": "https://github.com/atomic-php/container",
"readme": "README.md",
"license": "MIT",
"authors": [
{
"name": "Thavarshan",
"email": "tjthavarshan@gmail.com",
"role": "Author"
}
],
"support": {
"issues": "https://github.com/atomic-php/container/issues",
"source": "https://github.com/atomic-php/container"
},
"keywords": [
"container",
"dependency-injection",
"psr-11",
"psr",
"php",
"performance",
"compile-time"
],
"autoload": {
"psr-4": {
"Atomic\\Container\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/",
"Benchmarks\\": "benchmarks/"
}
},
"require": {
"php": "^8.4",
"psr/container": "^1.0|^2.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.0",
"phpunit/phpunit": "^10.0",
"vimeo/psalm": "^6.11"
},
"scripts": {
"test": "phpunit",
"test-coverage": "php -d xdebug.mode=coverage vendor/bin/phpunit --coverage-clover=coverage.xml",
"psalm": "psalm",
"cs-check": "php-cs-fixer fix --dry-run --diff",
"cs-fix": "php-cs-fixer fix",
"benchmark": "php benchmarks/run-benchmarks.php",
"qa": [
"@psalm",
"@cs-check",
"@test"
],
"analyze": [
"@psalm",
"@cs-check"
]
},
"config": {
"sort-packages": true,
"optimize-autoloader": true,
"classmap-authoritative": true
},
"minimum-stability": "stable",
"prefer-stable": true
}