forked from grgk/seo-analyzer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
original-composer.json
55 lines (55 loc) · 1.04 KB
/
original-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
53
54
55
{
"name": "addedbytes/seo-analyzer",
"description": "Seo Analyzer",
"keywords": [
"addedbytes",
"seo-analyzer"
],
"homepage": "https://github.com/AddedBytes/seo-analyzer",
"license": "MIT",
"type": "library",
"authors": [
{
"name": "grgk",
"email": "[email protected]"
},
{
"name": "dave",
"email": "[email protected]"
}
],
"require": {
"php": ">=8.3",
"ext-dom": "*",
"ext-json": "*",
"ext-libxml": "*",
"guzzlehttp/guzzle": "^7.0",
"psr/simple-cache": "^3.0",
"symfony/cache": "^6.2",
"symfony/translation": "^4.2",
"symfony/yaml": "^4.2"
},
"require-dev": {
"phpunit/phpunit": "^9.5.28"
},
"minimum-stability": "dev",
"prefer-stable": true,
"autoload": {
"psr-4": {
"SeoAnalyzer\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"config": {
"optimize-autoloader": true,
"preferred-install": "dist",
"sort-packages": true
},
"scripts": {
"test": "./vendor/bin/pest"
}
}