-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
102 lines (102 loc) · 2.71 KB
/
composer.json
File metadata and controls
102 lines (102 loc) · 2.71 KB
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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
{
"type": "project",
"license": "proprietary",
"minimum-stability": "stable",
"prefer-stable": true,
"require": {
"php": ">=8.2",
"api-platform/core": "^3.1",
"beberlei/doctrineextensions": "^1.3",
"doctrine/doctrine-bundle": "^2.8",
"doctrine/doctrine-migrations-bundle": "^3.2",
"doctrine/orm": "^2.14",
"friendsofsymfony/rest-bundle": "^3.5",
"jms/serializer-bundle": "^5.2",
"nesbot/carbon": "^2.66",
"sensio/framework-extra-bundle": "^6.2",
"stof/doctrine-extensions-bundle": "^1.7",
"symfony/console": "6.2.*",
"symfony/doctrine-bridge": "6.2.*",
"symfony/dotenv": "6.2.*",
"symfony/event-dispatcher": "6.2.*",
"symfony/flex": "^2",
"symfony/framework-bundle": "6.2.*",
"symfony/mailer": "6.2.*",
"symfony/runtime": "6.2.*",
"symfony/security-bundle": "6.2.*",
"symfony/serializer": "6.2.*",
"symfony/translation": "6.2.*",
"symfony/uid": "^6.2",
"symfony/validator": "6.2.*",
"symfony/yaml": "6.2.*",
"tekos-interactive/saa-core-bundle": "^1.1.1",
"tekos-interactive/saa-user-bundle": "^0.1.1"
},
"config": {
"allow-plugins": {
"php-http/discovery": true,
"symfony/flex": true,
"symfony/runtime": true
},
"sort-packages": true
},
"autoload": {
"psr-4": {
"App\\": "src/",
"TekosInteractive\\SaaUserBundle\\": "vendor/tekos-interactive/saa-user-bundle/src/"
}
},
"autoload-dev": {
"psr-4": {
"App\\Tests\\": "tests/"
}
},
"scripts": {
"auto-scripts": {
"cache:clear": "symfony-cmd",
"assets:install %PUBLIC_DIR%": "symfony-cmd"
},
"post-install-cmd": [
"@auto-scripts"
],
"post-update-cmd": [
"@auto-scripts"
],
"phpmd": "vendor/bin/phpmd src/ text phpmd.xml.dist",
"phpcs": "vendor/bin/phpcs",
"phpcbf": "vendor/bin/phpcbf",
"phpstan": "vendor/bin/phpstan analyse src/ tests/",
"phpunit": "XDEBUG_MODE=coverage php bin/phpunit --coverage-html coverage"
},
"conflict": {
"symfony/symfony": "*"
},
"extra": {
"symfony": {
"allow-contrib": true,
"require": "6.2.*",
"docker": true
}
},
"repositories": [
{
"type": "vcs",
"url": "git@github.com:TekosInteractive/saa-endpointmaker-bundle.git"
},
{
"type": "vcs",
"url": "git@github.com:TekosInteractive/saa-core-bundle.git"
},
{
"type": "vcs",
"url": "git@github.com:TekosInteractive/saa-user-bundle.git"
}
],
"require-dev": {
"doctrine/doctrine-fixtures-bundle": "^3.4",
"pem-fr/php-test-tools": "^8.2",
"phpstan/phpstan": "^1.10",
"symfony/maker-bundle": "^1.49",
"tekos-interactive/saa-endpointmaker-bundle": "1.2.1"
}
}