-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
52 lines (52 loc) · 1.38 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
{
"name": "sasa-b/replcrawler",
"description": "Web Crawler with REPL shell",
"version": "0.1.1",
"type": "project",
"license": "artistic-2.0",
"autoload": {
"psr-4": {
"Sco\\REPLCrawler\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Sco\\REPLCrawler\\Tests\\": "tests/"
}
},
"authors": [
{
"name": "Sasa Blagojevic",
"email": "sasa.blagojevic@mail.com"
}
],
"require": {
"ext-dom": "*",
"php": "^8.1",
"psy/psysh": "^0.12",
"symfony/console": "^6.0 || ^7.0",
"ext-pcntl": "*",
"webmozart/assert": "^1.10",
"symfony/event-dispatcher": "^6.0 || ^7.0",
"symfony/browser-kit": "^6.0 || ^7.0",
"symfony/http-client": "^6.0 || ^7.0",
"symfony/css-selector": "^6.0 || ^7.0"
},
"require-dev": {
"phpunit/phpunit": "^10.0",
"phpstan/phpstan": "*",
"phpstan/phpstan-phpunit": "*"
},
"scripts": {
"code:fixer": [
"tools/php-cs-fixer/vendor/bin/php-cs-fixer fix --allow-risky=yes --config=.php-cs-fixer.dist.php"
],
"phpstan": [
"vendor/bin/phpstan analyse --configuration=tools/phpstan/phpstan.neon.dist"
],
"code:quality": [
"@code:fixer",
"@phpstan"
]
}
}