Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
16 commits
Select commit Hold shift + click to select a range
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: 1 addition & 1 deletion .github/SECURITY.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ We take all security bugs in `wayofdev/laravel-cycle-orm-adapter` seriously. Ple

1. **GitHub Security Advisories**: Please report security issues directly through our GitHub Security Advisories page: [https://github.com/wayofdev/laravel-cycle-orm-adapter/security/advisories/new](https://github.com/wayofdev/laravel-cycle-orm-adapter/security/advisories/new). This ensures that sensitive information is handled confidentially.

2. **Empty Security Issue**: After submitting through GitHub Security Advisories, please also create an empty security issue to alert us, as GitHub Advisories do not send automatic notifications. This can be done [here](https://github.com/wayofdev/laravel-cycle-orm-adapter/issues/new?assignees=&labels=type%3A+bug%2Cpriority%3A+high%2Ctype%3A+security&projects=&template=5-security-report.yml&title=%5BSecurity%5D%3A+).
2. **Empty Security Issue**: After submitting through GitHub Security Advisories, please also create an empty security issue to alert us, as GitHub Advisories do not send automatic notifications. This can be done by [creating a new issue](https://github.com/wayofdev/laravel-cycle-orm-adapter/issues/new?assignees=&labels=type%3A+bug%2Cpriority%3A+high%2Ctype%3A+security&projects=&template=5-security-report.yml&title=%5BSecurity%5D%3A+).

3. **Direct Contact**: For highly sensitive information, in addition to the GitHub Security Advisories, please email us directly at `the@wayof.dev` with the subject line "SECURITY - Vulnerability Report". This will be treated with the highest priority.

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/testing-mssql.yml
Original file line number Diff line number Diff line change
Expand Up @@ -120,10 +120,10 @@ jobs:
else
echo "❌ SQL Server connection failed, retrying in 5 seconds..."
cat /tmp/sqltest.log 2>/dev/null || true
if [ $i -eq 30 ]; then
if [ "$i" -eq 30 ]; then
echo "πŸ’₯ SQL Server failed to become ready after 150 seconds"
# Show container logs for debugging
docker logs $(docker ps -q --filter "ancestor=mcr.microsoft.com/mssql/server:2022-latest") || true
docker logs "$(docker ps -q --filter "ancestor=mcr.microsoft.com/mssql/server:2022-latest")" || true
exit 1
fi
sleep 5
Expand Down
2 changes: 1 addition & 1 deletion .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ repos:
- id: php-cs-fixer
name: PHP CS Fixer
description: Lint files using PHP CS Fixer
entry: vendor/bin/php-cs-fixer fix --config=.php-cs-fixer.dist.php --verbose --diff
entry: bash -c "if command -v php &> /dev/null; then php vendor/bin/php-cs-fixer fix --config=.php-cs-fixer.dist.php --verbose --diff; else docker compose run --rm --no-deps app php vendor/bin/php-cs-fixer fix --config=.php-cs-fixer.dist.php --verbose --diff; fi"
language: system
types: [php]
exclude: ^vendor/
Expand Down
11 changes: 6 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -55,11 +55,12 @@ The full documentation for the package is available at [https://laravel-cycle-or

## 🧩 Compatibility Map

| Laravel | Cycle ORM | Adapter |
|----------------------|-----------|----------|
| `^10.28` | `2.x` | `<4.9.0` |
| `^10.28, 11.x` | `2.x` | `β‰₯4.9.0` |
| `^10.28, 11.x, 12.x` | `2.x` | `β‰₯5.0.0` |
| Laravel | Cycle ORM | Adapter | PHP Version |
|----------------------|-----------|----------|-------------|
| `^10.28` | `2.x` | `<4.9.0` | `^8.2` |
| `^10.28, 11.x` | `2.x` | `β‰₯4.9.0` | `^8.2` |
| `^10.28, 11.x, 12.x` | `2.x` | `5.0.0` | `^8.2` |
| `11.x, 12.x, 13.x` | `2.x` | `>5.0.0` | `^8.3` |

<br>

Expand Down
42 changes: 21 additions & 21 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@
}
],
"require": {
"php": "^8.2",
"php": "^8.3",
Comment thread
jauhenis marked this conversation as resolved.
"ext-fileinfo": "*",
"ext-pdo": "*",
"cycle/annotated": "^4.3",
Expand All @@ -53,35 +53,35 @@
"cycle/orm": "^2.11",
"cycle/schema-builder": "^2.11",
"cycle/schema-migrations-generator": "^2.3",
"cycle/schema-renderer": "^1.3",
"laravel/framework": "^10.28 || ^11.0 || ^12.0",
"cycle/schema-renderer": "^1.4",
"laravel/framework": "^11.0 || ^12.0 || ^13.0",
"psr/log": "^3.0",
"spiral/attributes": "^3.1",
"spiral/core": "^3.15",
"spiral/tokenizer": "^3.15",
"symfony/console": "^6.4 || ^7.3"
"spiral/core": "^3.16",
"spiral/tokenizer": "^3.16",
"symfony/console": "^6.4 || ^7.3 || ^8.0"
},
"require-dev": {
"ext-curl": "*",
"ext-pdo_mysql": "*",
"beberlei/assert": "^3.3",
"fakerphp/faker": "^1.24",
"larastan/larastan": "^2.11",
"laravel/telescope": "^5.12",
"orchestra/testbench": "^8.21 || ^9.15.0 || ^10.0",
"pestphp/pest": "^2.36",
"pestphp/pest-plugin-laravel": "^2.4",
"larastan/larastan": "^2.11 || ^3.9",
"laravel/telescope": "^5.18",
"orchestra/testbench": "^8.21 || ^9.15.0 || ^10.0 || ^11.0",
"pestphp/pest": "^2.36 | ^3.5.2 | ^4.4.1",
"pestphp/pest-plugin-laravel": "^2.4 || ^3.0 || ^4.0",
"phpstan/extension-installer": "^1.4",
"phpstan/phpstan": "^1.12",
"phpstan/phpstan-deprecation-rules": "^1.2",
"phpstan/phpstan-phpunit": "^1.4",
"phpstan/phpstan-strict-rules": "^1.6",
"phpunit/phpunit": "^10.5",
"psalm/plugin-laravel": "^3.0",
"phpstan/phpstan": "^1.12 || ^2.1",
"phpstan/phpstan-deprecation-rules": "^1.2 || ^2.0",
"phpstan/phpstan-phpunit": "^1.4 || ^2.0",
"phpstan/phpstan-strict-rules": "^1.6 || ^2.0",
"phpunit/phpunit": "^10.5 || ^11.5 || ^12.5",
"psalm/plugin-laravel": "^3.1 || ^4.0",
"psalm/plugin-phpunit": "~0.19.0",
"rector/rector": "^1.2",
"roave/infection-static-analysis-plugin": "^1.39",
"vimeo/psalm": "^6.13.1",
"rector/rector": "^1.2 || ^2.0",
"roave/infection-static-analysis-plugin": "^1.43",
"vimeo/psalm": "^6.16 || ^7.0@beta",
"wayofdev/cs-fixer-config": "^1.5"
},
"suggest": {
Expand Down Expand Up @@ -115,7 +115,7 @@
"phpstan/extension-installer": true
},
"platform": {
"php": "8.2.27"
"php": "8.4.19"
},
"sort-packages": true
},
Expand Down
Loading