generated from svenluijten/package-skeleton
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
34 lines (34 loc) · 890 Bytes
/
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
{
"name": "sven/laravel-view-assertions",
"description": "Assert things about your Laravel views in your PHPUnit tests",
"keywords": ["testing", "laravel", "views", "assertions", "blade"],
"license": "MIT",
"authors": [
{
"name": "Sven Luijten",
"email": "contact@svenluijten.com",
"homepage": "https://svenluijten.com"
}
],
"require": {
"php": "^8.1",
"phpunit/phpunit": "^9.0 || ^10.0",
"laravel/framework": "^9.0 || ^10.0"
},
"require-dev": {
"orchestra/testbench": "^7.0 || ^8.0"
},
"autoload": {
"psr-4": {
"Sven\\LaravelViewAssertions\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Sven\\LaravelViewAssertions\\Tests\\": "tests/"
}
},
"config": {
"sort-packages": true
}
}