๐Ÿ“ฆ Pierstoval / SmokeTesting

๐Ÿ“„ composer.json ยท 32 lines
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32{
    "name": "pierstoval/smoke-testing",
    "type": "symfony-bundle",
    "license": "LGPL-3.0-or-later",
    "description": "Smoke testing automator for Symfony applications",
    "keywords": ["testing", "dev", "symfony"],
    "autoload": {
        "psr-4": {
            "Pierstoval\\SmokeTesting\\": "src/"
        }
    },
    "autoload-dev": {
        "psr-4": {
            "Pierstoval\\SmokeTesting\\Tests\\": "tests/"
        }
    },
    "authors": [
        {
            "name": "Alex Rock Ancelet",
            "email": "pierstoval@gmail.com"
        }
    ],
    "require": {
        "php": "^8.1",
        "symfony/framework-bundle": "^6.1|^7.0|^8.0"
    },
    "require-dev": {
        "phpunit/phpunit": "^9.6|^10.0|^11|^12",
        "symfony/maker-bundle": "^1.43"
    }
}