Blame view

composer.json 1.42 KB
6c4edfa3   Alexandre   First Commit LabI...
1
2
3
4
5
6
7
{
    "name": "cakephp/app",
    "description": "CakePHP skeleton app",
    "homepage": "http://cakephp.org",
    "type": "project",
    "license": "MIT",
    "require": {
c3f2e5a1   Thibaud Ajas   MAJ DE PHP v5.6 -...
8
9
        "php": ">=5.6",
        "cakephp/cakephp": "~3.4",
6c4edfa3   Alexandre   First Commit LabI...
10
11
        "mobiledetect/mobiledetectlib": "2.*",
        "cakephp/migrations": "~1.0",
e7a07da0   Alexandre   bugfixes
12
        "cakephp/plugin-installer": "*",
913cdf44   Etienne Pallier   ignore vendor/*
13
14
15
        "cakephp/debug_kit": "^3.2",
	"aferrandini/phpqrcode": "1.0.1",
	"setasign/fpdf": "1.8.1"
6c4edfa3   Alexandre   First Commit LabI...
16
17
18
    },
    "require-dev": {
        "psy/psysh": "@stable",
78b69219   Alexandre   Bugfixes
19
        "cakephp/bake": "~1.1",
7446bf45   Etienne Pallier   upgraded version ...
20
        "phpunit/phpunit": "^5.7|^6.0"
6c4edfa3   Alexandre   First Commit LabI...
21
22
23
24
25
26
27
28
    },
    "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
29
30
        },
        "files": [
913cdf44   Etienne Pallier   ignore vendor/*
31
        	"vendor/setasign/fpdf/fpdf.php"
5d0d680d   Alexandre   Version: 2.2.0
32
        ]
6c4edfa3   Alexandre   First Commit LabI...
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
    },
    "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
}