1
0
Fork 0
mirror of synced 2025-04-03 21:23:35 +03:00

update php version

This commit is contained in:
Maria Tyschitskaya 2021-12-02 10:02:19 +03:00
parent c6a44ea2b3
commit 643e422364
7 changed files with 3855 additions and 1539 deletions

View file

@ -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 }}

View file

@ -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

File diff suppressed because it is too large Load diff

1957
phpstan-baseline.neon Normal file

File diff suppressed because it is too large Load diff

View file

@ -1,6 +1,7 @@
includes:
- phpstan-baseline.neon
parameters:
autoload_files:
- %currentWorkingDirectory%/vendor/autoload.php
level: 7
paths:
- %currentWorkingDirectory%/src

View file

@ -93,9 +93,9 @@ class Serializer
$context = new DeserializationContext();
} else {
$context = new SerializationContext();
}
$context->setSerializeNull(false);
$context->setSerializeNull(false);
}
return $context;
}

View file

@ -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.";