forked from roach-php/core
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
83 lines (83 loc) · 2.24 KB
/
composer.json
File metadata and controls
83 lines (83 loc) · 2.24 KB
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
{
"name": "roach-php/core",
"description": "A complete web scraping toolkit for PHP",
"license": "MIT",
"type": "library",
"authors": [
{
"name": "Kai Sassnowski",
"email": "me@kai-sassnowski.com"
}
],
"require": {
"php": "^8.0",
"guzzlehttp/guzzle": "^7.4.5",
"jakeasmith/http_build_url": "^1.0.1",
"league/container": "^4.2",
"monolog/monolog": "^2.3",
"psr/container": "^2.0",
"psy/psysh": "^0.11.1",
"sebastian/version": "^3.0",
"spatie/robots-txt": "^2.0",
"symfony/console": "^6.0",
"symfony/css-selector": "^6.0",
"symfony/dom-crawler": "^6.0",
"symfony/event-dispatcher": "^6.0",
"symfony/options-resolver": "^6.0"
},
"require-dev": {
"ergebnis/composer-normalize": "^2.15",
"ergebnis/php-cs-fixer-config": "^3.0",
"http-interop/http-factory-guzzle": "^1.2",
"phpunit/phpunit": "^9.5",
"psr/http-message": "^1.0.1",
"roave/security-advisories": "dev-latest",
"slim/slim": "^4.8",
"spatie/browsershot": "^3.52",
"spatie/phpunit-watcher": "^1.23",
"vimeo/psalm": "^4.23"
},
"suggest": {
"spatie/browsershot": "Required to execute Javascript in spiders"
},
"autoload": {
"psr-4": {
"RoachPHP\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"RoachPHP\\Tests\\": "tests/"
}
},
"bin": [
"roach"
],
"config": {
"allow-plugins": {
"composer/package-versions-deprecated": true,
"ergebnis/composer-normalize": true
}
},
"scripts": {
"post-install-cmd": [
"composer normalize"
],
"post-update-cmd": [
"composer normalize"
],
"analyze": [
"vendor/bin/psalm --no-cache"
],
"coding-standards": [
"mkdir -p .build/php-cs-fixer",
"php-cs-fixer fix --diff --verbose"
],
"test-server": [
"php -S localhost:8000 -t ./tests/Server"
],
"test-watch": [
"vendor/bin/phpunit-watcher watch"
]
}
}