Commit 41f2d2ca2cf96fcf6d7cb727a1e10b00ba50a1c1

Authored by Etienne Pallier
1 parent dfb68288
Exists in master and in 1 other branch dev

ajout 1 ligne dans composer.json

(pour faire croire à git qu'il a changé et provoquer une mise à jour des
plugins)
Showing 1 changed file with 49 additions and 48 deletions   Show diff stats
composer.json
  1 +
1 2 {
2   - "name": "cakephp/app",
3   - "description": "CakePHP skeleton app",
4   - "homepage": "http://cakephp.org",
5   - "type": "project",
6   - "license": "MIT",
7   - "require": {
8   - "php": ">=5.6",
9   - "cakephp/cakephp": "3.7.*",
10   - "mobiledetect/mobiledetectlib": "2.*",
11   - "cakephp/migrations": "~1.0",
12   - "cakephp/plugin-installer": "*",
13   - "cakephp/debug_kit": "^3.17.0",
14   - "aferrandini/phpqrcode": "1.0.1",
15   - "setasign/fpdf": "1.8.1",
16   - "daoandco/cakephp-dompdf": "^1.2"
17   - },
18   - "require-dev": {
19   - "psy/psysh": "@stable",
20   - "cakephp/bake": "~1.1",
21   - "phpunit/phpunit": "^5.7",
22   - "bamarni/composer-bin-plugin": "^1.2"
23   - },
24   - "suggest": {
25   - "phpunit/phpunit": "Allows automated tests to be run without system-wide install.",
26   - "cakephp/cakephp-codesniffer": "Allows to check the code against the coding standards used in CakePHP."
27   - },
28   - "autoload": {
29   - "psr-4": {
30   - "App\\": "src"
31   - },
32   - "files": [
33   - "vendor/setasign/fpdf/fpdf.php"
34   - ]
35   - },
36   - "autoload-dev": {
37   - "psr-4": {
38   - "App\\Test\\": "tests",
39   - "Cake\\Test\\": "./vendor/cakephp/cakephp/tests"
40   - }
41   - },
42   - "scripts": {
43   - "post-install-cmd": "App\\Console\\Installer::postInstall",
44   - "post-create-project-cmd": "App\\Console\\Installer::postInstall",
45   - "post-autoload-dump": "Cake\\Composer\\Installer\\PluginInstaller::postAutoloadDump"
46   - },
47   - "minimum-stability": "stable",
48   - "prefer-stable": true
49   -}
  3 + "name" : "cakephp/app",
  4 + "description" : "CakePHP skeleton app",
  5 + "homepage" : "http://cakephp.org",
  6 + "type" : "project",
  7 + "license" : "MIT",
  8 + "require" : {
  9 + "php" : ">=5.6",
  10 + "cakephp/cakephp" : "3.7.*",
  11 + "mobiledetect/mobiledetectlib" : "2.*",
  12 + "cakephp/migrations" : "~1.0",
  13 + "cakephp/plugin-installer" : "*",
  14 + "cakephp/debug_kit" : "^3.17.0",
  15 + "aferrandini/phpqrcode" : "1.0.1",
  16 + "setasign/fpdf" : "1.8.1",
  17 + "daoandco/cakephp-dompdf" : "^1.2"
  18 + },
  19 + "require-dev" : {
  20 + "psy/psysh" : "@stable",
  21 + "cakephp/bake" : "~1.1",
  22 + "phpunit/phpunit" : "^5.7",
  23 + "bamarni/composer-bin-plugin" : "^1.2"
  24 + },
  25 + "suggest" : {
  26 + "phpunit/phpunit" : "Allows automated tests to be run without system-wide install.",
  27 + "cakephp/cakephp-codesniffer" : "Allows to check the code against the coding standards used in CakePHP."
  28 + },
  29 + "autoload" : {
  30 + "psr-4" : {
  31 + "App\\" : "src"
  32 + },
  33 + "files" : [
  34 + "vendor/setasign/fpdf/fpdf.php"
  35 + ]
  36 + },
  37 + "autoload-dev" : {
  38 + "psr-4" : {
  39 + "App\\Test\\" : "tests",
  40 + "Cake\\Test\\" : "./vendor/cakephp/cakephp/tests"
  41 + }
  42 + },
  43 + "scripts" : {
  44 + "post-install-cmd" : "App\\Console\\Installer::postInstall",
  45 + "post-create-project-cmd" : "App\\Console\\Installer::postInstall",
  46 + "post-autoload-dump" : "Cake\\Composer\\Installer\\PluginInstaller::postAutoloadDump"
  47 + },
  48 + "minimum-stability" : "stable",
  49 + "prefer-stable" : true
  50 +}
50 51 \ No newline at end of file
... ...