-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
47 lines (47 loc) · 1.59 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
{
"name": "survos/scraper-bundle",
"description": "Scrape and cache web pages",
"keywords": [
"symfony-ux",
"symfony"
],
"license": "MIT",
"type": "symfony-bundle",
"require": {
"php": "^8.3",
"ext-pdo": "*",
"symfony/config": "^6.4 || ^7.1",
"symfony/dependency-injection": "^6.4 || ^7.1",
"symfony/http-kernel": "^6.4 || ^7.1",
"symfony/http-client": "^6.4 || ^7.1",
"symfony/string": "^6.4 || ^7.1",
"symfony/cache-contracts": "^3.4",
"symfony/http-client-contracts": "^3.5"
},
"require-dev": {
"phpstan/phpstan": "^2.0",
"symfony/browser-kit": "^6.4 || ^7.1",
"symfony/cache": "^6.4 || ^7.1",
"symfony/framework-bundle": "^6.4 || ^7.1",
"symfony/phpunit-bridge": "^6.4 || ^7.1",
"symfony/twig-bundle": "^6.4 || ^7.1",
"symfony/var-dumper": "^6.4 || ^7.1",
"twig/twig": "^3.4",
"phpunit/phpunit": "^11.4",
"psr/log": "^3.0"
},
"autoload": {
"psr-4": {
"Survos\\Scraper\\Tests\\": "tests/",
"Survos\\Scraper\\": "src/"
}
},
"scripts": {
"phpstan": "phpstan",
"phpunit-base": "phpunit tests/",
"phpunit": "@phpunit-base --testdox",
"phpunit-coverage-text": "@phpunit-base --coverage-text --colors=never",
"cs-check": "mkdir -p var/cache && php-cs-fixer fix --dry-run --diff --cache-file=var/cache/.php_cs.cache",
"cs-fix": "mkdir -p var/cache && php-cs-fixer fix --diff --cache-file=var/cache/.php_cs.cache"
}
}