๐Ÿ“ฆ Pierstoval / CharacterManagerBundle

๐Ÿ“„ composer.json ยท 53 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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53{
    "name": "pierstoval/character-manager",
    "description": "Skeleton of a character manager for games",
    "license": "MIT",
    "type": "symfony-bundle",
    "keywords": ["symfony", "character", "game", "bundle"],
    "homepage": "https://github.com/Pierstoval/CharacterManagerBundle",
    "autoload": {
        "psr-4": {
            "Pierstoval\\Bundle\\CharacterManagerBundle\\": "src/"
        }
    },
    "autoload-dev": {
        "psr-4": {
            "Pierstoval\\Bundle\\CharacterManagerBundle\\Tests\\": "Tests/"
        }
    },
    "require": {
        "php": ">=8.1",
        "symfony/config": "^6.2|^7.1",
        "symfony/dependency-injection": "^6.2|^7.1",
        "symfony/framework-bundle": "^6.2|^7.1",
        "symfony/http-kernel": "^6.2|^7.1",
        "symfony/http-foundation": "^6.2|^7.1",
        "symfony/routing": "^6.2|^7.1"
    },
    "require-dev": {
        "doctrine/doctrine-bundle": "^1.12|^2.2",
        "doctrine/orm": "^2.8|^3.0",
        "doctrine/annotations": "^1.13|^2.0",
        "symfony/css-selector": "^6.2|^7.1",
        "symfony/console": "^6.2|^7.1",
        "symfony/browser-kit": "^6.2|^7.1",
        "symfony/dom-crawler": "^6.2|^7.1",
        "symfony/translation": "^6.2|^7.1",
        "symfony/twig-bundle": "^6.2|^7.1",
        "symfony/yaml": "^6.2|^7.1",
        "symfony/phpunit-bridge": "^6.2|^7.1"
    },
    "suggest": {
        "doctrine/doctrine-bundle": "To inject the object manager in steps and map your Character entities with the ORM",
        "doctrine/orm": "To inject the object manager in steps and map your Character entities with the ORM",
        "symfony/translation": "To translate the messages instead of using the default keys",
        "symfony/twig-bundle": "To use Twig templating engine in your actions"
    },
    "authors": [
        {
            "name": "Alex \"Pierstoval\" Rock Ancelet",
            "email": "pierstoval@gmail.com"
        }
    ]
}