This repository has been archived by the owner on Sep 16, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
67 lines (67 loc) · 1.56 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "heavyrain-php/rembrandt",
"description": "Framework-agnostic Data Mapper ORM",
"type": "library",
"license": "MIT",
"keywords": [
"ORM",
"Database",
"SQL",
"Data Mapper"
],
"homepage": "https://github.com/heavyrain-php/rembrandt/",
"support": {
"issues": "https://github.com/heavyrain-php/rembrandt/issues",
"source": "https://github.com/heavyrain-php/rembrandt/"
},
"authors": [
{
"name": "Masaru Yamagishi",
"email": "[email protected]"
}
],
"require": {
"php": ">=8.1"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.21",
"phpunit/phpunit": "^10.2.3",
"vimeo/psalm": "^5.13",
"illuminate/support": "^9.0|^10.0|^11.0"
},
"suggest": {
"illuminate/support": "To use Laravel integration"
},
"autoload": {
"psr-4": {
"Rembrandt\\": "src/"
},
"exclude-from-classmap": [
"**/*Test.php"
]
},
"autoload-dev": {
"psr-4": {
"Rembrandt\\": "src/",
"Rembrandt\\Tests\\": "tests/"
}
},
"scripts": {
"psalm": "psalm",
"cs": "php-cs-fixer fix src",
"test": "phpunit src tests",
"lint": [
"@psalm",
"@cs"
],
"ci": [
"@lint",
"@test"
]
},
"prefer-stable": true,
"config": {
"optimize-autoloader": true,
"sort-packages": true
}
}