-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
80 lines (80 loc) · 2.08 KB
/
Copy pathcomposer.json
File metadata and controls
80 lines (80 loc) · 2.08 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
73
74
75
76
77
78
79
80
{
"name": "tommyknocker/chain",
"description": "Professional-grade fluent method chaining library with advanced features: conditional execution, timeout protection, error handling, extension system, and PSR-11 container integration.",
"type": "library",
"homepage": "https://github.com/tommyknocker/chain",
"support": {
"issues": "https://github.com/tommyknocker/chain/issues",
"source": "https://github.com/tommyknocker/chain"
},
"license": "MIT",
"keywords": [
"chain",
"chaining",
"fluent",
"fluent-interface",
"method-chaining",
"object-wrapper",
"wrapper",
"pipeline",
"functional-programming",
"error-handling",
"timeout",
"conditional-execution",
"extension-system",
"configuration",
"monitoring",
"logging",
"psr-11",
"container",
"dependency-injection",
"php8",
"type-safe",
"enterprise",
"professional"
],
"authors": [
{
"name": "Vasiliy Krivoplyas",
"email": "vasiliy@krivoplyas.com"
}
],
"require": {
"php": "^8.0",
"psr/container": "^2.0"
},
"require-dev": {
"phpunit/phpunit": "^9.6 || ^10.5 || ^11.0",
"phpstan/phpstan": "^1.11 || ^2.0",
"friendsofphp/php-cs-fixer": "^3.0"
},
"autoload": {
"psr-4": {
"tommyknocker\\chain\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"tommyknocker\\chain\\tests\\": "tests/"
}
},
"scripts": {
"test": "vendor/bin/phpunit --colors=always",
"test:coverage": "vendor/bin/phpunit --coverage-html build/coverage --coverage-clover build/coverage.xml",
"test:ci": "vendor/bin/phpunit --coverage-clover build/coverage.xml --log-junit build/junit.xml",
"phpstan": "vendor/bin/phpstan analyse --configuration=phpstan.neon.dist",
"cs:fix": "vendor/bin/php-cs-fixer fix",
"cs:check": "vendor/bin/php-cs-fixer fix --dry-run --diff",
"quality": [
"@cs:check",
"@phpstan",
"@test"
],
"quality:fix": [
"@cs:fix",
"@test"
],
"examples": "bash scripts/test-examples.sh",
"release": "bash scripts/release.sh"
}
}