Blame view

vendor/cakephp/migrations/composer.json 1.85 KB
c4650843   Etienne Pallier   Ajout du dossier ...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{
    "name": "cakephp/migrations",
    "description": "Database Migration plugin for CakePHP 3.0 based on Phinx",
    "type": "cakephp-plugin",
    "keywords": ["cakephp", "migrations"],
    "homepage": "https://github.com/cakephp/migrations",
    "license": "MIT",
    "authors": [
        {
            "name": "CakePHP Community",
            "homepage": "https://github.com/cakephp/migrations/graphs/contributors"
        }
    ],
    "support": {
        "issues": "https://github.com/cakephp/migrations/issues",
        "forum": "http://stackoverflow.com/tags/cakephp",
        "irc": "irc://irc.freenode.org/cakephp",
        "source": "https://github.com/cakephp/migrations"
    },
    "require": {
        "php": ">=5.6.0",
d06254b2   Etienne Pallier   bugfix plugin mig...
22
        "robmorgan/phinx": "0.8.1",
c4650843   Etienne Pallier   Ajout du dossier ...
23
24
25
26
        "cakephp/orm": "^3.6.0",
        "cakephp/cache": "^3.6.0"
    },
    "require-dev": {
d06254b2   Etienne Pallier   bugfix plugin mig...
27
        "phpunit/phpunit": "^5.7.14",
c4650843   Etienne Pallier   Ajout du dossier ...
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
        "cakephp/cakephp": "^3.6.0",
        "cakephp/bake": "^1.7.0",
        "cakephp/cakephp-codesniffer": "^3.0"
    },
    "autoload": {
        "psr-4": {
            "Migrations\\": "src"
        }
    },
    "autoload-dev": {
        "psr-4": {
            "Cake\\Test\\": "./vendor/cakephp/cakephp/tests",
            "Migrations\\PHPStan\\": "tests/PHPStan",
            "Migrations\\Test\\": "tests",
            "TestApp\\": "tests/test_app/App",
            "TestBlog\\": "tests/test_app/Plugin/TestBlog/src"
        }
    },
    "suggest": {
        "cakephp/bake": "Required if you want to generate migrations."
    },
    "minimum-stability": "dev",
    "prefer-stable": true,
    "scripts": {
        "check": [
            "@cs-check",
            "@test"
        ],
        "cs-check": "phpcs --colors -p ./src ./tests",
        "cs-fix": "phpcbf --colors ./src ./tests",
        "test": "phpunit",
        "test-coverage": "phpunit --coverage-clover=clover.xml"
    }
}