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

Merge pull request #38 from retailcrm/php-env-and-version

Php ENV and actual version
This commit is contained in:
Ilyas Salikhov 2023-08-10 18:56:49 +03:00 committed by GitHub
commit d9192f963c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 11 additions and 8 deletions

2
.gitignore vendored
View file

@ -194,5 +194,7 @@ build/*
# Test report & coverage
test-report.xml
.phpunit.result.cache
clover.xml
composer.lock
docker-compose.yml

View file

@ -1,15 +1,16 @@
ROOT_DIR=$(shell dirname $(realpath $(lastword $(MAKEFILE_LIST))))
SRC_DIR=$(ROOT_DIR)/src
BIN_DIR=$(ROOT_DIR)/vendor/bin
ifneq ("$(wildcard docker-compose.yml)","")
PHP=docker-compose run --rm --no-deps php php
else
PHP=php
endif
test:
@echo "==> Running tests"
@cd $(ROOT_DIR)
@cp .env.dist .env
@php -d memory_limit=-1 $(BIN_DIR)/phpunit -c phpunit.xml.dist
@$(PHP) -d memory_limit=-1 vendor/bin/phpunit -c phpunit.xml.dist
@echo "==> Testing complete"
stan:
@echo "==> Running analysis"
@php $(BIN_DIR)/phpstan analyse
@$(PHP) vendor/bin/phpstan analyse
@echo "==> Analysis complete"

View file

@ -8,7 +8,7 @@
## Requirements
* PHP 7.1 and above
* PHP 7.3 and above
* PHP's cURL support
* PHP's JSON support

View file

@ -12,7 +12,7 @@
}
],
"require": {
"php": ">=7.2.5",
"php": ">=7.3",
"ext-curl": "*",
"ext-json": "*",
"jms/serializer": "3.*",