-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
42 lines (42 loc) · 918 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
40
41
42
{
"name": "scrawler/app",
"description": "scrawler framework main app container",
"type": "library",
"license": "MIT",
"autoload": {
"psr-4": {
"Scrawler\\": "src/"
},
"files": [
"src/functions.php"
]
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"authors": [
{
"name": "ipranjal",
"email": "pranjaltech10@gmail.com"
}
],
"require": {
"scrawler/router": "^4.2",
"php-di/php-di": "^7.0",
"phlak/config": "^8.0",
"scrawler/http": "^2.0",
"vlucas/phpdotenv": "^5.6"
},
"require-dev": {
"pestphp/pest": "^3.2",
"phpstan/phpstan": "^1.12",
"rector/rector": "^1.2"
},
"config": {
"allow-plugins": {
"pestphp/pest-plugin": true
}
}
}