-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
57 lines (57 loc) · 1.38 KB
/
composer.json
File metadata and controls
57 lines (57 loc) · 1.38 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
{
"name": "kariricode/contract",
"description": "Central repository for interface definitions in the KaririCode Framework. Implements interface code in PHP for specified namespaces, adhering to PSR standards and leveraging modern PHP features.",
"keywords": [
"contract",
"interface",
"PSRs",
"php",
"kariri",
"framework"
],
"homepage": "https://kariricode.org/",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Walmir Silva",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"KaririCode\\Contract\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"KaririCode\\Contract\\Tests\\": "tests"
}
},
"require": {
"php": "^8.3"
},
"extra": {
"branch-alias": {
"dev-main": "1.0.x-dev"
}
},
"support": {
"issues": "https://github.com/KaririCode-Framework/kariricode-contract/issues",
"source": "https://github.com/KaririCode-Framework/kariricode-contract"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "3.85.1",
"nunomaduro/phpinsights": "^2.11",
"phpunit/phpunit": "^10.5",
"squizlabs/php_codesniffer": "^3.10",
"mockery/mockery": "^1.6",
"enlightn/security-checker": "2.0.0"
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
},
"minimum-stability": "stable"
}