-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
54 lines (54 loc) · 1.35 KB
/
composer.json
File metadata and controls
54 lines (54 loc) · 1.35 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
{
"name": "tcds-io/orm",
"description": "Simple ORM based which avoid coupling entities to database models",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Thiago Cordeiro",
"email": "thiagoguetten@gmail.com"
}
],
"require": {
"php": ">=8.4",
"ext-json": "*",
"ext-pdo": "*",
"tcds-io/php-better-generics": "dev-main"
},
"require-dev": {
"infection/infection": "^0.29",
"phpstan/phpstan": "^2.1",
"phpunit/phpunit": "^12.1",
"squizlabs/php_codesniffer": "^3.0",
"symfony/var-dumper": "^7.2"
},
"autoload": {
"psr-4": {
"Tcds\\Io\\Orm\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Test\\Tcds\\Io\\Orm\\": "tests"
}
},
"scripts": {
"cs:check": "vendor/bin/phpcs -s --colors --runtime-set testVersion 8.4",
"cs:fix": "vendor/bin/phpcbf --colors -ps",
"test:mutation": "vendor/bin/infection --threads=2 --min-msi=100 --ansi",
"test:stan": "php -d memory_limit=-1 vendor/bin/phpstan analyse src --level=max --ansi",
"test:unit": "vendor/bin/phpunit --testdox --color=always",
"tests": [
"@cs:check",
"@test:stan",
"@test:unit",
"@test:mutation"
]
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": false,
"infection/extension-installer": true
}
}
}