From 18a7c93b93c4aa8f003c4f9e02a227510c0dea2e Mon Sep 17 00:00:00 2001 From: Perreal Guillaume <guillaume.perreal@irstea.fr> Date: Tue, 20 Aug 2019 15:03:00 +0200 Subject: [PATCH] Correction de la version de PHP pour le dev. --- composer.json | 225 +++++++++++++++++++++++++++----------------------- composer.lock | Bin 229083 -> 229047 bytes 2 files changed, 121 insertions(+), 104 deletions(-) diff --git a/composer.json b/composer.json index ad6f179..be89f5d 100644 --- a/composer.json +++ b/composer.json @@ -1,108 +1,125 @@ { - "name": "irstea/ng-model-generator-bundle", - "description": "Génération de modèles Typescript pour Angular à partir des données d'API-platform.", - "type": "symfony-bundle", - "license": "LGPL-3.0-or-later", - "keywords": [ "irstea", "api-platform", "typescript", "angular" ], - "authors": [ - { "name": "Pôle Informatique Scientifique - Direction des Systèmes d'Information", "email": "dsi.poleis@lists.irstea.fr" }, - { "name": "Guillaume Perréal" } - ], - "homepage": "https://gitlab.irstea.fr/pole-is/bundles/ng-model-generator-bundle", - "support": { - "email": "dsi.poleis@lists.irstea.fr", - "issues": "https://gitlab.irstea.fr/pole-is/bundles/ng-model-generator-bundle/issues", - "source": "https://gitlab.irstea.fr/pole-is/bundles/ng-model-generator-bundle/tree/master" - }, - "minimum-stability": "stable", - "require": { - "php": "^7.1", - "ext-json": "*", - "ext-zip": "*", - "api-platform/core": "^2.4", - "beberlei/assert": "^3.2", - "doctrine/cache": "^1.8", - "doctrine/inflector": "^1.3", - "psr/container": "^1.0", - "symfony/config": "^3.4 | ^4.0", - "symfony/console": "^3.4 | ^4.1", - "symfony/dependency-injection": "^3.4 | ^4.0", - "symfony/http-kernel": "^3.4 | ^4.0", - "symfony/property-info": "^3.4 | ^4.0", - "symfony/routing": "^3.4 | ^4.0", - "symfony/serializer": "^3.4 | ^4.0", - "symfony/templating": "^4.3", - "symfony/twig-bundle": "^4.3", - "twig/twig": "^2.2" - }, - "require-dev": { - "doctrine/doctrine-bundle": "^1.11", - "doctrine/orm": "^2.6", - "irstea/composer-require-checker-shim": "^2.0", - "irstea/php-cs-fixer-config": "^1.0", - "irstea/php-cs-fixer-shim": "^2.15", - "irstea/phpcpd-shim": "^4.1", - "irstea/phploc-shim": "^4.0", - "irstea/phpmd-config": "^1.0.0", - "irstea/phpmd-shim": "^2.7", - "irstea/phpstan-config": "^1.0", - "jakub-onderka/php-parallel-lint": "^1.0", - "phpstan/phpstan-shim": "^0.11.15", - "phpunit/phpunit": "^7.3", - "ramsey/uuid": "^3.8", - "ramsey/uuid-doctrine": "^1.5", - "symfony/framework-bundle": "^4.3", - "symfony/validator": "^4.3", - "symfony/var-dumper": "^4.3", - "symfony/yaml": "^4.3" - }, - "scripts": { - "fix-cs": "@php vendor/bin/php-cs-fixer fix --verbose", - "phploc": "@php vendor/bin/phploc --no-interaction src/php tests", - "test": [ - "@test:lint", - "@test:php-cs-fixer", - "@test:phpmd", - "@test:phpstan", - "@test:phpcpd", - "@test:composer-require-checker", - "@test:phpunit", - "@test:console", - "@test:generate" - ], - "test:lint": "@php vendor/bin/parallel-lint src/php tests -j $(nproc)", - "test:php-cs-fixer": "@php vendor/bin/php-cs-fixer fix --dry-run --verbose --using-cache=false --show-progress=none --no-interaction", - "test:phpmd": "@php vendor/bin/phpmd src/php,tests text ./phpmd-ruleset.xml", - "test:phpcpd": "@php vendor/bin/phpcpd src/php tests --no-interaction --fuzzy", - "test:phpstan": "@php vendor/bin/phpstan analyse --no-progress --no-interaction", - "test:composer-require-checker": "@php -d xdebug.max_nesting_level=1000 vendor/bin/composer-require-checker --ignore-parse-errors", - "test:phpunit": "@php vendor/bin/phpunit", - "test:console": "@php tests/Fixtures/console doctrine:schema:validate --ansi --skip-sync", - "test:generate": "@php tests/Fixtures/console ng-model:generate --ansi -vvv >/dev/null" - }, - "autoload": { - "psr-4": { "Irstea\\NgModelGeneratorBundle\\": "src/php/" } - }, - "autoload-dev": { - "psr-4": { "Irstea\\NgModelGeneratorBundle\\Tests\\": "tests/" } - }, - "config": { - "sort-packages": true + "name": "irstea/ng-model-generator-bundle", + "description": "Génération de modèles Typescript pour Angular à partir des données d'API-platform.", + "type": "symfony-bundle", + "license": "LGPL-3.0-or-later", + "keywords": [ + "irstea", + "api-platform", + "typescript", + "angular" + ], + "authors": [ + { + "name": "Pôle Informatique Scientifique - Direction des Systèmes d'Information", + "email": "dsi.poleis@lists.irstea.fr" }, - "extra": { - "branch-alias": { - "dev-master": "2.0.x-dev" - } - }, - "archive": { - "exclude": [ - "/.?*", - "/vendor", - "/node_modules", - "/phpunit.xml.dist", - "/phpmd-ruleset.xml", - "/phpstan.neon", - "/package*.json" - ] + { + "name": "Guillaume Perréal" + } + ], + "homepage": "https://gitlab.irstea.fr/pole-is/bundles/ng-model-generator-bundle", + "support": { + "email": "dsi.poleis@lists.irstea.fr", + "issues": "https://gitlab.irstea.fr/pole-is/bundles/ng-model-generator-bundle/issues", + "source": "https://gitlab.irstea.fr/pole-is/bundles/ng-model-generator-bundle/tree/master" + }, + "minimum-stability": "stable", + "require": { + "php": "^7.1", + "ext-json": "*", + "ext-zip": "*", + "api-platform/core": "^2.4", + "beberlei/assert": "^3.2", + "doctrine/cache": "^1.8", + "doctrine/inflector": "^1.3", + "psr/container": "^1.0", + "symfony/config": "^3.4 | ^4.0", + "symfony/console": "^3.4 | ^4.1", + "symfony/dependency-injection": "^3.4 | ^4.0", + "symfony/http-kernel": "^3.4 | ^4.0", + "symfony/property-info": "^3.4 | ^4.0", + "symfony/routing": "^3.4 | ^4.0", + "symfony/serializer": "^3.4 | ^4.0", + "symfony/templating": "^4.3", + "symfony/twig-bundle": "^4.3", + "twig/twig": "^2.2" + }, + "require-dev": { + "doctrine/doctrine-bundle": "^1.11", + "doctrine/orm": "^2.6", + "irstea/composer-require-checker-shim": "^2.0", + "irstea/php-cs-fixer-config": "^1.0", + "irstea/php-cs-fixer-shim": "^2.15", + "irstea/phpcpd-shim": "^4.1", + "irstea/phploc-shim": "^4.0", + "irstea/phpmd-config": "^1.0.0", + "irstea/phpmd-shim": "^2.7", + "irstea/phpstan-config": "^1.0", + "jakub-onderka/php-parallel-lint": "^1.0", + "phpstan/phpstan-shim": "^0.11.15", + "phpunit/phpunit": "^7.3", + "ramsey/uuid": "^3.8", + "ramsey/uuid-doctrine": "^1.5", + "symfony/framework-bundle": "^4.3", + "symfony/validator": "^4.3", + "symfony/var-dumper": "^4.3", + "symfony/yaml": "^4.3" + }, + "scripts": { + "fix-cs": "@php vendor/bin/php-cs-fixer fix --verbose", + "phploc": "@php vendor/bin/phploc --no-interaction src/php tests", + "test": [ + "@test:lint", + "@test:php-cs-fixer", + "@test:phpmd", + "@test:phpstan", + "@test:phpcpd", + "@test:composer-require-checker", + "@test:phpunit", + "@test:console", + "@test:generate" + ], + "test:lint": "@php vendor/bin/parallel-lint src/php tests -j $(nproc)", + "test:php-cs-fixer": "@php vendor/bin/php-cs-fixer fix --dry-run --verbose --using-cache=false --show-progress=none --no-interaction", + "test:phpmd": "@php vendor/bin/phpmd src/php,tests text ./phpmd-ruleset.xml", + "test:phpcpd": "@php vendor/bin/phpcpd src/php tests --no-interaction --fuzzy", + "test:phpstan": "@php vendor/bin/phpstan analyse --no-progress --no-interaction", + "test:composer-require-checker": "@php -d xdebug.max_nesting_level=1000 vendor/bin/composer-require-checker --ignore-parse-errors", + "test:phpunit": "@php vendor/bin/phpunit", + "test:console": "@php tests/Fixtures/console doctrine:schema:validate --ansi --skip-sync", + "test:generate": "@php tests/Fixtures/console ng-model:generate --ansi -vvv >/dev/null" + }, + "autoload": { + "psr-4": { + "Irstea\\NgModelGeneratorBundle\\": "src/php/" + } + }, + "autoload-dev": { + "psr-4": { + "Irstea\\NgModelGeneratorBundle\\Tests\\": "tests/" + } + }, + "config": { + "sort-packages": true, + "platform": { + "php": "7.1.30" + } + }, + "extra": { + "branch-alias": { + "dev-master": "2.0.x-dev" } + }, + "archive": { + "exclude": [ + "/.?*", + "/vendor", + "/node_modules", + "/phpunit.xml.dist", + "/phpmd-ruleset.xml", + "/phpstan.neon", + "/package*.json" + ] + } } diff --git a/composer.lock b/composer.lock index c6292db07a751f3869cf1c45054496d09b7fd3d6..62b852e2950bf55e78d49077a067738d1fc6096d 100644 GIT binary patch delta 339 zcmccpmv{SL-VMTx3MNUZM#*MoW=Tm#DT!$Y=1Jz}smYe+DXE4Q78WTMsm;cW+l?6+ zkFTA+$&*QF`iEtV@zb-{GiqrVrllsOm?ayhrdgO6nHr~<CtDbrCZ(oWn5HG085t#} z7#Wx+TBcb{FHB@?G091-NG;N@$}C7q%*oLwPVeN6c4E^%lri$E5v@Lh(P(m^MeuaR zV8;IG{pw8N(;wtB8gBoviBXVo@_&ua$pTsvrt4i}4BK9?m2n{>ubHlaMTnuHm4UI9 zfyrdS>qhMX+Zne9Y-j2?E~&$%00c?}If*4{`9-<9`DLj^MVTq7#nbcam_-H5^$hil M4V1u&YPo8;0RA&=b^rhX delta 322 zcmdn~m-qHx-VMTx3dxpciK%9ZhDnKrMk%JL=BCDmDdq;2mWC-t#;NA!hRw!|+l?6+ zkFT9<=$|p!K$&xT_IgGwjZ{PPGy^ls)Ra_XvoxS4lO#*i#FW%zb3;o*gVYqmBooVI zbCcA>>4k}mEv7lC6{$t~Rhb1zi8(p?MCzTsaRsC3^a<0M_|%BA45T52(P(;N8)NbG z38_r{)BB>BxTY`iWEP#g!9s-DLeFUO$M*i||Bo@YZlAb`QIK)_f*3||#_4CTGDb`< z$Y8YG?zNRMgOS%<*VrJ$(9+7-*viOavfy>2>F3uma<>24#<>00Hm3UH%v`lx04*wM AO#lD@ -- GitLab