-
Notifications
You must be signed in to change notification settings - Fork 4
/
composer.json
51 lines (51 loc) · 1.09 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
{
"name": "juampi92/test-seo",
"description": "Easy way to test your SEO",
"keywords": [
"phpunit",
"php",
"testing",
"SEO"
],
"homepage": "https://github.com/juampi92/test-seo",
"license": "MIT",
"authors": [
{
"name": "Juan Pablo Barreto",
"email": "[email protected]",
"role": "Developer"
}
],
"require": {
"php": "^8.0.2",
"illuminate/macroable": "^7.0|^8.0|^9.0|^10.0",
"phpunit/phpunit": "^8.3|^9.0|^10.0",
"spatie/url": "^1.3.4|^2.0",
"symfony/dom-crawler": "^5.4|^6.1"
},
"require-dev": {
"laravel/pint": "^1.0",
"phpstan/phpstan": "^1.8"
},
"autoload": {
"psr-4": {
"Juampi92\\TestSEO\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Juampi92\\TestSEO\\Tests\\": "tests"
}
},
"scripts": {
"analyse": "vendor/bin/phpstan analyse -c phpstan.neon.dist",
"test": "vendor/bin/phpunit",
"test-coverage": "vendor/bin/phpunit --coverage",
"format": "vendor/bin/pint"
},
"config": {
"sort-packages": true
},
"minimum-stability": "dev",
"prefer-stable": true
}