forked from alex-moreno/glitcherbot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
66 lines (65 loc) · 1.83 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
{
"name": "alex-moreno/glitcherbot",
"type": "library",
"description": "Visual regression testing made easy",
"keywords": ["visual regression","visual regression testing", "regression testing"],
"homepage": "https://alexmoreno.net",
"license": "AGPL-3.0-or-later",
"minimum-stability": "dev",
"prefer-stable": true,
"authors": [
{
"name": "Alejandro Moreno",
"email": "[email protected]",
"homepage": "https://github.com/alex-moreno/glitcherbot",
"role": "Devrel and Developer"
},
{
"name": "Iain Potter",
"email": "[email protected]",
"role": "Developer"
}
],
"require": {
"guzzlehttp/guzzle": "^7.2",
"amphp/parallel": "^1.4",
"php": ">=7.4",
"symfony/console": "^5.2",
"twig/twig": "^3.1",
"ext-simplexml": "*",
"symfony/http-kernel": "^5.2",
"symfony/routing": "^5.2",
"symfony/dependency-injection": "^5.2",
"symfony/yaml": "^5.2",
"symfony/config": "^5.2",
"symfony/finder": "^5.2",
"symfony/expression-language": "^5.2",
"symfony/form": "^5.2",
"symfony/twig-bridge": "^5.2",
"symfony/translation": "^5.2",
"oomphinc/composer-installers-extender": "^2.0"
},
"suggest": {
"ext-sqlite3": "*",
"php": ">=7.4"
},
"autoload": {
"classmap": [
"src"
],
"psr-4": {
"ScraperBot\\": "src/ScraperBot"
}
},
"scripts": {
"start" : "php -S 0.0.0.0:8000 -t html html/index.php"
},
"extra": {
"installer-types": [
"glitcherbot-package"
],
"installer-paths": {
"src/custom/{$name}": ["type:glitcherbot-package"]
}
}
}