-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
57 lines (57 loc) · 1.24 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
{
"name": "icanboogie/activerecord",
"type": "library",
"description": "ActiveRecord Object-relational mapping",
"keywords": [
"orm",
"database",
"activerecord"
],
"homepage": "https://icanboogie.org/",
"license": "MIT",
"authors": [
{
"name": "Olivier Laviale",
"email": "[email protected]",
"homepage": "https://olvlvl.com/",
"role": "Developer"
}
],
"support": {
"issues": "https://github.com/ICanBoogie/ActiveRecord/issues",
"source": "https://github.com/ICanBoogie/ActiveRecord"
},
"config": {
"sort-packages": true
},
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"php": ">=8.2",
"ext-pdo": "*",
"icanboogie/common": "^6.0",
"icanboogie/datetime": "^3.0",
"icanboogie/inflector": "^3.0",
"icanboogie/prototype": "^6.0",
"icanboogie/validate": "^6.0"
},
"require-dev": {
"ext-pdo_mysql": "*",
"phpstan/phpstan": "^2.0",
"phpunit/phpunit": "^11.4"
},
"autoload": {
"psr-4": {
"ICanBoogie\\": "lib",
"ICanBoogie\\ActiveRecord\\": "lib/ActiveRecord"
},
"files": [
"helpers.php"
]
},
"autoload-dev": {
"psr-4": {
"Test\\ICanBoogie\\": "tests"
}
}
}