Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@

# Testing
.phpunit.cache/
coverage/
coverage-html/
coverage.xml
junit.xml
Expand Down Expand Up @@ -41,3 +42,4 @@ vendor/
#User
CLAUDE.md
.claude
*.cache
1 change: 0 additions & 1 deletion .php-cs-fixer.cache

This file was deleted.

48 changes: 0 additions & 48 deletions CYCLE_ORM_UPDATE_STATUS.md

This file was deleted.

92 changes: 0 additions & 92 deletions PACKAGIST_MIGRATION_REPORT.md

This file was deleted.

39 changes: 0 additions & 39 deletions PHPSTAN_FIXES_SUMMARY.md

This file was deleted.

17 changes: 16 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -266,10 +266,25 @@ composer test:unit
composer test:feature
composer test:integration

# Run with coverage
# Run with coverage (cross-platform)
composer test-coverage

# Platform-specific alternatives:
# Unix/Linux/macOS
./scripts/test-coverage.sh
# Windows CMD
scripts\test-coverage.bat
# PowerShell
scripts\test-coverage.ps1
```

### Cross-Platform Compatibility

The project includes cross-platform scripts for coverage testing:
- **Primary method**: `composer test-coverage` (works on all platforms)
- **Alternative scripts**: Platform-specific scripts in `scripts/` directory
- **Windows support**: Both CMD and PowerShell scripts included

## 📚 Documentation

- [Integration Guide](docs/integration-guide.md)
Expand Down
10 changes: 2 additions & 8 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,12 +1,6 @@
{
"name": "pivotphp/cycle-orm",
"description": "Robust and well-tested Cycle ORM integration for PivotPHP microframework with type safety and comprehensive testing",
"repositories": [
{
"type": "path",
"url": "../pivotphp-core"
}
],
"keywords": [
"pivotphp",
"cycle-orm",
Expand All @@ -29,7 +23,7 @@
],
"require": {
"php": "^8.1",
"pivotphp/core": "*@dev",
"pivotphp/core": "^1.1.0",
"cycle/orm": "^2.10",
"cycle/annotated": "^4.3",
"cycle/migrations": "^4.2.5",
Expand Down Expand Up @@ -59,7 +53,7 @@
"test:feature": "phpunit --testsuite=Feature",
"test:integration": "phpunit --testsuite=Integration",
"test:database": "phpunit --testsuite=Database",
"test-coverage": "phpunit --coverage-html coverage",
"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",
Expand Down
86 changes: 0 additions & 86 deletions composer.json.local

This file was deleted.

Loading