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

v5 version #1534

Open
wants to merge 24 commits into
base: 5.0.x
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
24 commits
Select commit Hold shift + click to select a range
f1a76e4
bump versions php, ext-phalcon, ide-stubs
lmfmaier Mar 10, 2023
f6fe671
bump versions dev dependencies
lmfmaier Mar 10, 2023
7373634
extend \Exception
lmfmaier Mar 10, 2023
707694c
v5.0.0.0
lmfmaier Mar 10, 2023
9e3727d
fork repository
lmfmaier Mar 10, 2023
5a72179
bump versions in README.md
lmfmaier Mar 10, 2023
620ba6b
repository package
lmfmaier Mar 10, 2023
c7881b3
repository package
lmfmaier Mar 10, 2023
40c6132
composer.json
lmfmaier Mar 10, 2023
8c686fd
namespace changes in templates
lmfmaier Mar 10, 2023
9ab21bd
Fix \Di namespace
lmfmaier Mar 10, 2023
b72ee35
changed registerDirs() to setDirectories()
lmfmaier Mar 10, 2023
7182e10
replaced static Version::get() call
lmfmaier Mar 10, 2023
fbfc508
v5 installation
lmfmaier Mar 10, 2023
72155c3
generate typed class properties, https://wiki.php.net/rfc/typed_prope…
lmfmaier Mar 12, 2023
4b26c1c
prefix ? on $phpTypedProp for null fields
lmfmaier May 4, 2023
7c46e0f
set primary key (id) to null to make it type safe
lmfmaier May 4, 2023
518853f
set primary key (id) to null to make it type safe
lmfmaier May 4, 2023
005664a
initialize fields to null to make them type safe
lmfmaier May 8, 2024
7555d84
Revert "initialize fields to null to make them type safe"
lmfmaier May 8, 2024
8487be3
initialize not null fields to null to make them type safe
lmfmaier May 8, 2024
9646fce
initialize not null fields to null to make them type safe
lmfmaier May 8, 2024
89f99d9
initialize fields to null/0 to make them type safe
lmfmaier May 8, 2024
3b5d777
initialize fields to null/0 to make them type safe
lmfmaier May 8, 2024
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
14 changes: 12 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@ with Phalcon framework.

## Requirements

* PHP >= 7.2
* Phalcon >= 4.0.0
* PHP >= 7.4
* Phalcon >= 5.0.0

## Installing via Composer

Expand All @@ -34,6 +34,16 @@ curl -s http://getcomposer.org/installer | php

Create the composer.json file as follows:

```json
{
"require-dev": {
"phalcon/devtools": "~5.0"
}
}
```

If you are still using Phalcon 4.x, create a `composer.json` with the following instead:

```json
{
"require-dev": {
Expand Down
34 changes: 17 additions & 17 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,28 +22,28 @@
"forum": "https://forum.phalcon.io"
},
"require": {
"php": ">=7.2",
"php": ">=7.4",
"ext-pdo": "*",
"ext-phalcon": "^4.0.0",
"ext-phalcon": "^5.0.0",
"psy/psysh": "~0.9",
"nikic/php-parser": "^4.2.4",
"phalcon/migrations": "^2.0",
"vlucas/phpdotenv": "^3.6|^4.0|^5.0"
"nikic/php-parser": "^4.15.0",
"phalcon/migrations": "^3.0",
"vlucas/phpdotenv": "^5.0"
},
"require-dev": {
"humbug/box": "^3.8",
"codeception/codeception": "^4.1",
"phpdocumentor/reflection-docblock": "^4.3",
"phpunit/phpunit": "^8.0",
"codeception/specify": "^1.2",
"codeception/verify": "^1.2",
"humbug/box": "^4.0",
"codeception/codeception": "^5.0",
"phpdocumentor/reflection-docblock": "^5.0",
"phpunit/phpunit": "^9.5",
"codeception/specify": "^2.0",
"codeception/verify": "^3.0",
"squizlabs/php_codesniffer": "^3.5",
"phalcon/ide-stubs": "^4.0.0",
"vimeo/psalm": "^4.6",
"codeception/module-phpbrowser": "^1.0",
"codeception/module-filesystem": "^1.0",
"codeception/module-asserts": "^1.3",
"codeception/module-cli": "^1.0"
"phalcon/ide-stubs": "^5.0.0",
"vimeo/psalm": "^5.0",
"codeception/module-phpbrowser": "^2.0",
"codeception/module-filesystem": "^3.0",
"codeception/module-asserts": "^3.0",
"codeception/module-cli": "^2.0"
},
"autoload": {
"psr-4" : {
Expand Down
Loading