Blame view

composer.json 1.38 KB
6c4edfa3   Alexandre   First Commit LabI...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{
    "name": "cakephp/app",
    "description": "CakePHP skeleton app",
    "homepage": "http://cakephp.org",
    "type": "project",
    "license": "MIT",
    "require": {
        "php": ">=5.5.9",
        "cakephp/cakephp": "~3.2",
        "mobiledetect/mobiledetectlib": "2.*",
        "cakephp/migrations": "~1.0",
        "cakephp/plugin-installer": "*"
    },
    "require-dev": {
        "psy/psysh": "@stable",
        "cakephp/debug_kit": "~3.2",
be62f461   Alexandre   Version: 2.4.2.16
17
18
        "cakephp/bake": "~1.1",
        "phpunit/phpunit": "^5.4"
6c4edfa3   Alexandre   First Commit LabI...
19
20
21
22
23
24
25
26
    },
    "suggest": {
        "phpunit/phpunit": "Allows automated tests to be run without system-wide install.",
        "cakephp/cakephp-codesniffer": "Allows to check the code against the coding standards used in CakePHP."
    },
    "autoload": {
        "psr-4": {
            "App\\": "src"
5d0d680d   Alexandre   Version: 2.2.0
27
28
        },
        "files": [
6bb4a0f7   Alexandre   Version: 2.2.2
29
30
        	"vendor/phpqrcode/qrlib.php",
        	"vendor/fpdf/fpdf.php"
5d0d680d   Alexandre   Version: 2.2.0
31
        ]
6c4edfa3   Alexandre   First Commit LabI...
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
    },
    "autoload-dev": {
        "psr-4": {
            "App\\Test\\": "tests",
            "Cake\\Test\\": "./vendor/cakephp/cakephp/tests"
        }
    },
    "scripts": {
        "post-install-cmd": "App\\Console\\Installer::postInstall",
        "post-create-project-cmd": "App\\Console\\Installer::postInstall",
        "post-autoload-dump": "Cake\\Composer\\Installer\\PluginInstaller::postAutoloadDump"
    },
    "minimum-stability": "stable",
    "prefer-stable": true
}