forked from PhpGt/Dom
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
89 lines (83 loc) · 1.63 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "phpgt/dom",
"description": "The modern DOM API for PHP projects.",
"type": "library",
"require": {
"php": ">=8.0",
"ext-dom": "*",
"ext-libxml": "*",
"ext-mbstring": "*",
"phpgt/cssxpath": ">=1.1.2",
"phpgt/propfunc": "^1.0",
"psr/http-message": "^1.0"
},
"require-dev": {
"phpunit/phpunit": ">=9.3.8",
"phpstan/phpstan": ">=0.12"
},
"license": "MIT",
"authors": [
{
"name": "Greg Bowler",
"homepage": "https://www.g105b.com",
"email": "[email protected]",
"role": "Developer"
},
{
"name": "Alvaro Guimaraes",
"homepage": "https://github.com/aguimaraes",
"role": "Developer"
},
{
"name": "James Fellows",
"homepage": "https://github.com/j4m3s",
"role": "Developer"
},
{
"name": "Emile Ward",
"homepage": "https://github.com/emileward",
"role": "Developer"
},
{
"name": "Jelmer Wijnja",
"homepage": "https://github.com/Jelmergu",
"role": "Developer"
},
{
"name": "Ognjen Petrovic",
"homepage": "https://github.com/ognjen-petrovic",
"role": "Developer"
},
{
"name": "Jacob Bearden",
"homepage": "https://github.com/jacobbearden",
"role": "Documentation contributor"
},
{
"name": "Jaroslav Týc",
"homepage": "https://www.jaroslavtyc.com/",
"role": "Developer"
},
{
"name": "Andrii Beziazychnyi",
"homepage": "https://www.atwix.com/",
"role": "Developer"
}
],
"autoload": {
"psr-4": {
"Gt\\Dom\\": "./src"
}
},
"autoload-dev": {
"psr-4": {
"Gt\\Dom\\Test\\": "./test/phpunit"
}
},
"funding": [
{
"type": "github",
"url": "https://github.com/sponsors/PhpGt"
}
]
}