QueryList/composer.json

41 lines
1000 B
JSON
Raw Normal View History

2015-12-22 18:10:14 +08:00
{
"name": "jaeger/querylist",
2017-10-08 23:01:22 +08:00
"description": "Simple, elegant, extensible PHP Web Scraper (crawler/spider),Use the css3 dom selector,Based on phpQuery! 简洁、优雅、可扩展的PHP采集工具(爬虫)基于phpQuery。",
2015-12-29 09:41:14 +08:00
"keywords":["QueryList","phpQuery","spider"],
"homepage": "http://querylist.cc",
2015-12-22 18:10:14 +08:00
"require": {
2020-03-23 18:15:04 +08:00
"PHP":">=7.1",
2019-02-22 15:33:54 +08:00
"jaeger/phpquery-single": "^1",
2020-03-10 20:49:44 +08:00
"jaeger/g-http": "^1.1",
2020-09-27 17:41:44 +08:00
"ext-dom": "*",
2020-12-14 10:39:28 +08:00
"tightenco/collect": ">5.0"
2015-12-22 18:10:14 +08:00
},
2017-06-09 12:21:49 +08:00
"suggest":{
2017-10-08 23:01:22 +08:00
2017-06-09 12:21:49 +08:00
},
2015-12-22 18:10:14 +08:00
"license": "MIT",
"authors": [
{
"name": "Jaeger",
2016-12-22 16:30:30 +08:00
"email": "JaegerCode@gmail.com"
2015-12-22 18:10:14 +08:00
}
2015-12-23 18:11:45 +08:00
],
"autoload":{
"psr-4":{
2017-09-19 02:33:38 +08:00
"QL\\":"src"
2015-12-23 18:11:45 +08:00
}
2017-09-21 01:44:03 +08:00
},
2018-12-10 00:13:16 +08:00
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
2017-09-21 01:44:03 +08:00
"require-dev": {
2018-12-10 00:13:16 +08:00
"symfony/var-dumper": "^3.3",
2020-04-01 22:03:50 +08:00
"phpunit/phpunit": "^8.5"
},
"scripts": {
"test": "./vendor/bin/phpunit"
2015-12-23 18:11:45 +08:00
}
2015-12-22 18:10:14 +08:00
}