-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
58 lines (58 loc) · 1.49 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
{
"name": "wdes/simple-php-model-system",
"description": "A simple PHP model system",
"homepage": "https://github.com/wdes/simple-php-model-system",
"type": "library",
"readme": "https://github.com/wdes/simple-php-model-system/blob/master/README.md",
"license": "MPL-2.0",
"support": {
"email": "[email protected]",
"issues": "https://github.com/wdes/simple-php-model-system/issues",
"source": "https://github.com/wdes/simple-php-model-system"
},
"scripts": {
"phpcs": "@php phpcs",
"phpcbf": "@php phpcbf",
"phpstan": "@php phpstan",
"phpunit": "@php phpunit"
},
"keywords": [
"model",
"PDO",
"mysql"
],
"authors": [
{
"name": "William Desportes",
"email": "[email protected]"
},
{
"name": "Gwénola ETHEVE",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"SimplePhpModelSystem\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"SimplePhpModelSystem\\Tests\\": "tests/",
"examples\\": "examples/"
}
},
"require": {
"php": "^8.2"
},
"require-dev": {
"phpunit/phpunit": "^11",
"phpstan/phpstan": "^1.4",
"wdes/coding-standard": "^3.2"
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}