-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
composer.json
77 lines (77 loc) · 1.98 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
{
"name": "cacing69/cquery",
"description": "PHP Scraper with language expression, could be used to scrape data from a website that uses javascript or ajax",
"keywords": [
"php",
"crawler",
"scraper"
],
"type": "library",
"license": "MIT",
"version": "1.4.0",
"homepage": "https://github.com/cacing69/cquery",
"support": {
"email": "[email protected]",
"issues": "https://github.com/cacing69/cquery/http-exception/issues",
"source": "https://github.com/cacing69/cquery",
"docs": "https://cacing69.github.io/cquery"
},
"archive": {
"exclude": [
"/tests",
"/docs",
"/.*"
]
},
"autoload": {
"psr-4": {
"Cacing69\\Cquery\\": "src/"
},
"exclude-from-classmap": [
"/tests/"
]
},
"authors": [
{
"name": "Ibnul Mutaki",
"email": "[email protected]"
}
],
"config": {
"optimize-autoloader": true,
"preferred-install": {
"*": "dist"
},
"sort-packages": true,
"allow-plugins": {
"composer/package-versions-deprecated": true
}
},
"minimum-stability": "stable",
"prefer-stable": true,
"require": {
"php": "^7.2|^8.1",
"symfony/browser-kit": "^5.4|^6.3",
"symfony/css-selector": "^5.4|^6.3",
"symfony/http-client": "^5.4|^6.3",
"symfony/deprecation-contracts": "^2.5|^3.4",
"symfony/dom-crawler": "5.4|^6.3",
"doctrine/collections": "^1.8|^2.1|^3.0",
"cocur/slugify": "^4.4",
"symfony/mime": "5.4|^6.3"
},
"require-dev": {
"phpunit/phpunit": "^8.0|^9.0|^10.0",
"friendsofphp/php-cs-fixer": "^3.4",
"symfony/var-dumper": "^5.4|^6.4",
"phpstan/phpstan" : "^1.10"
},
"suggest": {
"cqacing69/cquery-panther-loader": "Might be required by cquery to scrape javascript or ajax webpage"
},
"scripts": {
"test": "vendor/bin/phpunit tests",
"static-analysis": "vendor/bin/phpstan analyse src",
"fix": "vendor/bin/php-cs-fixer fix src"
}
}