-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
80 lines (80 loc) · 2.16 KB
/
composer.json
File metadata and controls
80 lines (80 loc) · 2.16 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "pivotphp/cycle-orm",
"description": "Robust and well-tested Cycle ORM integration for PivotPHP microframework with type safety and comprehensive testing",
"keywords": [
"pivotphp",
"cycle-orm",
"database",
"orm",
"microframework",
"type-safe",
"phpstan",
"repository-pattern",
"monitoring",
"middleware"
],
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Caio Alberto Fernandes",
"homepage": "https://github.com/CAFernandes"
}
],
"require": {
"php": "^8.1",
"pivotphp/core": "^1.1.0",
"cycle/orm": "^2.10",
"cycle/annotated": "^4.3",
"cycle/migrations": "^4.2.5",
"cycle/schema-builder": "^2.0",
"spiral/tokenizer": "^3.0"
},
"require-dev": {
"phpunit/phpunit": "^10.0",
"phpstan/phpstan": "^1.0",
"squizlabs/php_codesniffer": "^3.13",
"friendsofphp/php-cs-fixer": "^3.76"
},
"autoload": {
"psr-4": {
"PivotPHP\\CycleORM\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"PivotPHP\\CycleORM\\Tests\\": "tests/",
"Cycle\\ORM\\Select\\": "tests/Mocks/Cycle/ORM/Select/"
}
},
"scripts": {
"test": "phpunit",
"test:unit": "phpunit --testsuite=Unit",
"test:feature": "phpunit --testsuite=Feature",
"test:integration": "phpunit --testsuite=Integration",
"test:database": "phpunit --testsuite=Database",
"test-coverage": "php scripts/test-coverage.php",
"phpstan": "phpstan analyse src --level=9",
"cs:check": "phpcs --standard=phpcs.xml --report=full",
"cs:check:summary": "phpcs --standard=phpcs.xml --report=summary",
"cs:check:diff": "phpcs --standard=phpcs.xml --report=diff",
"cs:fix": "phpcbf --standard=phpcs.xml",
"cs:fix:dry": "phpcbf --standard=phpcs.xml --dry-run",
"psr12:validate": [
"@cs:check:summary",
"echo 'PSR-12 validation completed!'"
],
"psr12:fix": [
"@cs:fix",
"@cs:check:summary",
"echo 'PSR-12 auto-fix completed!'"
],
"quality:psr12": [
"@psr12:validate",
"@phpstan",
"echo 'Quality check with PSR-12 completed!'"
]
},
"minimum-stability": "stable",
"prefer-stable": true
}