-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
44 lines (44 loc) · 1.32 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
{
"name": "ziadoz/assertable-html",
"description": " Assertable HTML is an elegantly designed PHPUnit library that makes performing assertions on HTML responses from PHP and Laravel applications quick and enjoyable. ",
"homepage": "https://github.com/ziadoz/assertable-html",
"type": "library",
"license": "MIT",
"autoload": {
"psr-4": {
"Ziadoz\\AssertableHtml\\": "src/",
"Ziadoz\\AssertableHtml\\Tests\\": "tests/"
}
},
"authors": [
{
"name": "Jamie York",
"email": "[email protected]"
}
],
"require": {
"php": "^8.4",
"ext-dom": "*",
"ext-libxml": "*",
"symfony/var-dumper": "^7.1",
"laravel/framework": "^11.41.0"
},
"require-dev": {
"phpunit/phpunit": "^11.3",
"laravel/pint": "^1.18",
"orchestra/testbench": "^9.5"
},
"scripts": {
"lint": ["@php vendor/bin/pint"],
"tests": ["@php vendor/bin/phpunit"],
"tests:unit": ["@php vendor/bin/phpunit --testsuite=unit"],
"tests:integration": ["@php vendor/bin/phpunit --testsuite=integration"]
},
"extra": {
"laravel": {
"providers": [
"Ziadoz\\AssertableHtml\\AssertableHtmlServiceProvider"
]
}
}
}