-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
53 lines (53 loc) · 1.42 KB
/
composer.json
File metadata and controls
53 lines (53 loc) · 1.42 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
{
"name": "ui-awesome/html-contracts",
"type": "library",
"description": "Shared interfaces for the UI Awesome HTML ecosystem: rendering, attribute management, element typing, and form controls.",
"keywords": [
"ui-awesome",
"html",
"html-contracts",
"interfaces",
"renderable",
"attributes",
"form-control",
"block-element",
"inline-element",
"void-element",
"php"
],
"license": "BSD-3-Clause",
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"php": "^8.3"
},
"require-dev": {
"maglnet/composer-require-checker": "^4.1",
"php-forge/coding-standard": "^0.1",
"phpstan/extension-installer": "^1.4",
"phpstan/phpstan": "^2.1",
"phpstan/phpstan-strict-rules": "^2.0"
},
"autoload": {
"psr-4": {
"UIAwesome\\Html\\Contracts\\": "src"
}
},
"extra": {
"branch-alias": {
"dev-main": "0.2.x-dev"
}
},
"config": {
"sort-packages": true,
"allow-plugins": {
"phpstan/extension-installer": true
}
},
"scripts": {
"check-dependencies": "./vendor/bin/composer-require-checker check",
"ecs": "./vendor/bin/ecs --fix",
"rector": "./vendor/bin/rector process",
"static": "./vendor/bin/phpstan --memory-limit=-1"
}
}