-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
39 lines (39 loc) · 1000 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/arca",
"description": "Arca ORM by Scrawler",
"license": "MIT",
"authors": [
{
"name": "Pranjal Pandey",
"email": "pranjal@corpusvision.com",
"homepage": "https://github.com/ipranjal",
"role": "Owner"
}
],
"autoload": {
"psr-4": {
"Scrawler\\Arca\\": "src/"
}
},
"require": {
"php": ">=8.1.0",
"doctrine/dbal": "^4.0",
"loophp/collection": "^7.5",
"ramsey/uuid": "^4.3",
"thecodingmachine/safe": "^2.5",
"dunglas/doctrine-json-odm": "^1.4",
"php-di/php-di": "^7.0"
},
"require-dev": {
"phpstan/phpstan": "^1.12",
"pestphp/pest": "^3.0",
"pestphp/pest-plugin-faker": "^3.0",
"thecodingmachine/phpstan-safe-rule": "^1.2",
"rector/rector": "^1.0"
},
"config": {
"allow-plugins": {
"pestphp/pest-plugin": true
}
}
}