update php version
This commit is contained in:
parent
c6a44ea2b3
commit
643e422364
7 changed files with 3855 additions and 1539 deletions
2
.github/workflows/ci.yml
vendored
2
.github/workflows/ci.yml
vendored
|
@ -13,7 +13,7 @@ jobs:
|
|||
runs-on: ubuntu-latest
|
||||
strategy:
|
||||
matrix:
|
||||
php-version: ['7.1', '7.2', '7.3']
|
||||
php-version: ['7.2', '7.3', '7.4', '8.0']
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
- name: Setup PHP ${{ matrix.php-version }}
|
||||
|
|
|
@ -12,21 +12,22 @@
|
|||
}
|
||||
],
|
||||
"require": {
|
||||
"php": ">=7.1",
|
||||
"php": ">=7.2.5",
|
||||
"ext-curl": "*",
|
||||
"ext-json": "*",
|
||||
"jms/serializer": "1.14.*",
|
||||
"symfony/validator": "4.3.*",
|
||||
"doctrine/annotations": "1.12.*",
|
||||
"jms/serializer": "3.*",
|
||||
"symfony/validator": "5.4.*",
|
||||
"doctrine/annotations": "1.13.*",
|
||||
"doctrine/cache": "1.11.*",
|
||||
"guzzlehttp/guzzle": "6.*"
|
||||
"guzzlehttp/guzzle": "6.*",
|
||||
"symfony/intl": "^5.4"
|
||||
},
|
||||
"require-dev": {
|
||||
"phpmd/phpmd": "2.*",
|
||||
"squizlabs/php_codesniffer": "3.4.*",
|
||||
"symfony/dotenv": "4.3.*",
|
||||
"phpunit/phpunit": "7.*",
|
||||
"phpstan/phpstan": "0.11.*"
|
||||
"symfony/dotenv": "5.4.*",
|
||||
"phpunit/phpunit": "8.5.*",
|
||||
"phpstan/phpstan": "0.12.*"
|
||||
},
|
||||
"support": {
|
||||
"email": "support@retailcrm.pro"
|
||||
|
|
3408
composer.lock
generated
3408
composer.lock
generated
File diff suppressed because it is too large
Load diff
1957
phpstan-baseline.neon
Normal file
1957
phpstan-baseline.neon
Normal file
File diff suppressed because it is too large
Load diff
|
@ -1,6 +1,7 @@
|
|||
includes:
|
||||
- phpstan-baseline.neon
|
||||
|
||||
parameters:
|
||||
autoload_files:
|
||||
- %currentWorkingDirectory%/vendor/autoload.php
|
||||
level: 7
|
||||
paths:
|
||||
- %currentWorkingDirectory%/src
|
||||
|
|
|
@ -93,9 +93,9 @@ class Serializer
|
|||
$context = new DeserializationContext();
|
||||
} else {
|
||||
$context = new SerializationContext();
|
||||
}
|
||||
|
||||
$context->setSerializeNull(false);
|
||||
$context->setSerializeNull(false);
|
||||
}
|
||||
|
||||
return $context;
|
||||
}
|
||||
|
|
|
@ -14,6 +14,7 @@ use Symfony\Component\Dotenv\Dotenv;
|
|||
$dotenv = new Dotenv();
|
||||
|
||||
try {
|
||||
$dotenv->usePutenv(true);
|
||||
$dotenv->load(__DIR__ . '/../.env');
|
||||
} catch (Exception $exception) {
|
||||
echo "WARNING: Can't load .env file. Using default environment.";
|
||||
|
|
Loading…
Add table
Reference in a new issue