-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
39 lines (38 loc) · 942 Bytes
/
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
{
"name": "scrawler/http",
"version": "2.1.1",
"description": "Http component for scrawler framework",
"license": "MIT",
"authors": [
{
"name": "Pranjal Pandey",
"email": "[email protected]",
"homepage": "https://github.com/ipranjal",
"role": "Developer"
}
],
"require": {
"symfony/http-foundation": "^6.3",
"thecodingmachine/safe": "^2.5"
},
"autoload": {
"psr-4": {
"Scrawler\\Http\\": "src/"
},
"files": [
"src/functions.php"
]
},
"require-dev": {
"pestphp/pest": "^2.25",
"phpstan/phpstan": "^1.12",
"scrawler/database": "^1.0",
"thecodingmachine/phpstan-safe-rule": "^1.2",
"rector/rector": "^1.2"
},
"config": {
"allow-plugins": {
"pestphp/pest-plugin": true
}
}
}