-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathcomposer.json
More file actions
43 lines (43 loc) · 1.31 KB
/
composer.json
File metadata and controls
43 lines (43 loc) · 1.31 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
{
"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": "ziadoz@gmail.com"
}
],
"require": {
"php": "^8.4",
"ext-dom": "*",
"ext-libxml": "*",
"symfony/var-dumper": "^7.1"
},
"require-dev": {
"phpunit/phpunit": "^11.3 || ^12.0",
"laravel/pint": "^1.24.0",
"orchestra/testbench": "^9.5 || ^10.0"
},
"scripts": {
"lint": ["@php vendor/bin/pint --parallel"],
"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"
]
}
}
}