-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
61 lines (53 loc) · 1.57 KB
/
composer.json
File metadata and controls
61 lines (53 loc) · 1.57 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
{
"name": "platine-php/orm",
"description": "Platine ORM provides a flexible and powerful ORM implementing a data-mapper pattern.",
"type": "library",
"license": "MIT",
"keywords": ["application", "mapper", "activerecord", "framework", "php", "platine", "database", "pdo", "query", "orm"],
"authors": [
{
"name": "NGUEREZA Tony",
"email": "nguerezatony@gmail.com",
"homepage": "https://www.platine-php.com",
"role": "developer"
}
],
"support": {
"issues": "https://github.com/platine-php/orm/issues",
"source": "https://github.com/platine-php/orm"
},
"require": {
"php": "^8",
"platine-php/database": "^2.0"
},
"require-dev": {
"phpmd/phpmd": "@stable",
"phpstan/phpstan": "^2.0",
"phpunit/phpunit": "^9.6",
"platine-php/dev": "^2.0",
"squizlabs/php_codesniffer": "3.*"
},
"autoload": {
"psr-4":{
"Platine\\Orm\\": "src/"
}
},
"autoload-dev": {
"psr-4":{
"Platine\\Test\\": "tests"
},
"files": ["tests/fixtures/fixtures.php"]
},
"config": {
"sort-packages": true
},
"scripts": {
"test": "phpunit --colors=always",
"static": "phpstan analyze",
"check": "phpcs",
"check-fix": "phpcbf",
"analyze": "phpmd src xml phpmd.xml"
},
"minimum-stability": "stable",
"prefer-stable": true
}