Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Revert "Support PHP 8.1+" #12

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
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
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
*.swp
package.xml
composer.lock
phpunit.xml
.phpunit.result.cache
/tests/model_no_namespaced/Base/
Expand Down
102 changes: 49 additions & 53 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,55 +1,51 @@
{
"name": "mongator/mongator",
"type": "library",
"description": "Mongator is a easy, powerful and ultrafast ODM for PHP and MongoDB. (forked from Mandango project)",
"keywords": [
"odm",
"mongodb"
],
"homepage": "http://mongator.com",
"license": "MIT",
"authors": [
{
"name": "Máximo Cuadros",
"email": "[email protected]"
},
{
"name": "Daniel Ripollés",
"email": "[email protected]"
},
{
"name": "Pablo Díez",
"email": "[email protected]"
}
],
"repositories": [
{
"type": "git",
"url": "https://github.com/Blazemeter/mondator.git"
}
],
"require": {
"php": "^8.1",
"mongator/mondator": "dev-master",
"symfony/event-dispatcher": "^5.4",
"mongodb/mongodb": "^1.1"
},
"require-dev": {
"phpunit/phpunit": "^10.5"
},
"suggest": {
"ext-apc": "Allow caching on APC",
"ext-redis": "Allow caching on Redis",
"ext-memcached": "Allow caching on Memcached"
},
"autoload": {
"psr-0": {
"Mongator\\": "src/"
}
},
"extra": {
"branch-alias": {
"dev-master": "3.x-dev"
}
}
"name" : "mongator/mongator",
"type" : "library",
"description" : "Mongator is a easy, powerful and ultrafast ODM for PHP and MongoDB. (forked from Mandango project)",
"keywords" : [
"odm",
"mongodb"
],
"homepage" : "http://mongator.com",
"license" : "MIT",
"authors" : [{
"name" : "Máximo Cuadros",
"email" : "[email protected]"
}, {
"name" : "Daniel Ripollés",
"email" : "[email protected]"
}, {
"name" : "Pablo Díez",
"email" : "[email protected]"
}
],
"repositories" : [{
"type" : "git",
"url" : "https://github.com/Blazemeter/mondator.git"
}
],
"require" : {
"php" : "^8",
"mongator/mondator" : "dev-US45860-php8",
"symfony/event-dispatcher" : "^5.4",
"mongodb/mongodb" : "^1.1"
},
"require-dev" : {
"phpunit/phpunit": "9.5.25"
},
"suggest" : {
"ext-apc" : "Allow caching on APC",
"ext-redis" : "Allow caching on Redis",
"ext-memcached" : "Allow caching on Memcached"
},
"autoload" : {
"psr-0" : {
"Mongator\\" : "src/"
}
},
"extra" : {
"branch-alias" : {
"dev-master" : "2.x-dev"
}
}
}
Loading