-
Notifications
You must be signed in to change notification settings - Fork 3
/
composer.json
68 lines (68 loc) · 2.45 KB
/
composer.json
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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "swag-industries/melodiia",
"description": "Library that helps you build APIs",
"type": "symfony-bundle",
"scripts": {
"phpcs": "PHP_CS_FIXER_IGNORE_ENV=true php-cs-fixer fix --using-cache=no",
"test-app": "@php -S localhost:8000 -t tests/TestApplication/public",
"post-install-cmd": "make hooks.install"
},
"require": {
"php": ">=8.1",
"nekland/tools": "^2.5.1",
"symfony/event-dispatcher": "^6.0 || ^7.0",
"pagerfanta/pagerfanta": "^2.0.1 || ^3.0.0",
"symfony/yaml": "^6.0 || ^7.0",
"symfony/serializer": "^6.0 || ^7.0",
"pagerfanta/doctrine-orm-adapter": "^3.5"
},
"require-dev": {
"roave/security-advisories": "dev-latest",
"psr/container": "^v1.1.1 || ^2.0",
"phpunit/phpunit": "^9.6 || ^10.0.0 || ^11.1.3",
"friendsofphp/php-cs-fixer": "3.64.0",
"phpspec/prophecy": "^1.19",
"twig/twig": "^2.5 || ^3.10",
"doctrine/orm": "^2.6.6 || ^2.17.0",
"justinrainbow/json-schema": "^5.2",
"doctrine/doctrine-bundle": "^2.12.0",
"behat/behat": "3.14.0",
"friends-of-behat/symfony-extension": "^2.3.0",
"fakerphp/faker": "^1.12.1",
"monolog/monolog": "^3.4 || ^2.9",
"masterminds/html5": "^2.8",
"phpspec/prophecy-phpunit": "^2.0.0",
"symfony/dotenv": "^6.0 || ^7.0",
"symfony/security-bundle": "^6.2.6 || ^7.0",
"symfony/twig-bundle": "^6.0 || ^7.0",
"symfony/web-profiler-bundle": "^5.3 || ^6.0 || ^7.0",
"symfony/asset": "^6.0 || ^7.0",
"symfony/form": "^6.0 || ^7.0",
"symfony/validator": "^6.0 || ^7.0",
"symfony/framework-bundle": "^6.0 || ^7.0",
"symfony/dependency-injection": "^6.0 || ^7.0",
"symfony/config": "^6.0 || ^7.0",
"symfony/proxy-manager-bridge": "^6.4",
"symfony/browser-kit": "^6.0 || ^7.0",
"symfony/doctrine-bridge": "^6.0 || ^7.0"
},
"autoload": {
"psr-4": {
"SwagIndustries\\Melodiia\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"SwagIndustries\\Melodiia\\Test\\": "tests/Melodiia/",
"TestApplication\\": "tests/TestApplication/src/",
"SwagIndustries\\Melodiia\\Tests\\Behat\\": "tests/Behat/"
}
},
"license": "MIT",
"authors": [
{
"name": "Maxime Veber",
"email": "[email protected]"
}
]
}