-
Notifications
You must be signed in to change notification settings - Fork 7
/
composer.json
52 lines (52 loc) · 1.33 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
50
51
52
{
"name": "arcanedev/php-html",
"description": "A simple way to create html tags with php.",
"homepage": "https://github.com/ARCANEDEV/php-html",
"keywords": ["arcanedev", "html", "form", "tags"],
"authors": [
{
"name": "ARCANEDEV",
"email": "[email protected]",
"homepage": "https://github.com/arcanedev-maroc",
"role": "Developer"
}
],
"type": "library",
"license": "MIT",
"require": {
"php": "^8.2",
"illuminate/support": "^11.0"
},
"require-dev": {
"ext-dom": "*",
"laravel/pint": "^1.14",
"phpunit/phpunit": "^10.5|^11.0"
},
"autoload": {
"psr-4": {
"Arcanedev\\Html\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Arcanedev\\Html\\Tests\\": "tests/"
}
},
"scripts": {
"test": "phpunit --colors=always",
"test:dox": "phpunit --testdox --colors=always",
"test:ci": "phpunit --coverage-text",
"cs:fix": "pint -v",
"cs:test": "pint --test -v"
},
"extra": {
"branch-alias": {
"dev-develop": "8.x-dev"
}
},
"config": {
"sort-packages": true
},
"minimum-stability": "dev",
"prefer-stable": true
}