-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathcomposer.json
More file actions
44 lines (44 loc) · 1.14 KB
/
composer.json
File metadata and controls
44 lines (44 loc) · 1.14 KB
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
{
"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 <8.5.0",
"doctrine/dbal": "^4.0",
"loophp/collection": "^7.5",
"ramsey/uuid": "^4.3",
"thecodingmachine/safe": "^3.0",
"dunglas/doctrine-json-odm": "^1.4",
"php-di/php-di": "^7.0"
},
"require-dev": {
"phpstan/phpstan": "^2.0",
"pestphp/pest": "^3.0",
"pestphp/pest-plugin-faker": "^3.0",
"thecodingmachine/phpstan-safe-rule": "^1.2",
"rector/rector": "^2.0",
"phpunit/php-code-coverage": "^11.0"
},
"config": {
"allow-plugins": {
"pestphp/pest-plugin": true
}
},
"scripts": {
"test": "pest",
"test:coverage": "XDEBUG_MODE=coverage pest --coverage"
}
}