-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
88 lines (88 loc) · 2.21 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
{
"name": "idmarinas/template-bundle",
"type": "template",
"license": "BSD-3-Clause",
"keywords": [
"template",
"symfony-bundle"
],
"homepage": "https://github.com/idmarinas/idm-template-bundle",
"authors": [
{
"name": "Iván Diaz Marinas (IDMarinas)",
"email": "[email protected]",
"role": "Creator, Developer"
}
],
"support": {
"issues": "https://github.com/idmarinas/idm-template-bundle/issues"
},
"minimum-stability": "stable",
"prefer-stable": true,
"require": {
"php": "^8.2",
"symfony/dependency-injection": "^6.4 | ^7.0",
"symfony/framework-bundle": "^6.4 | ^7.0"
},
"require-dev": {
"dama/doctrine-test-bundle": "^8.2",
"doctrine/doctrine-fixtures-bundle": "^3.0 | ^4.0",
"idmarinas/composer-plugin": "^1.0.0",
"phpunit/phpunit": "^9.6",
"rector/rector": "^1.2",
"symfony/console": "^6.4 | ^7.0",
"symfony/maker-bundle": "^1.61",
"symfony/phpunit-bridge": "^7.2",
"symfony/runtime": "^6.4 | ^7.0",
"twig/twig": "^3.16",
"zenstruck/foundry": "^2.3"
},
"config": {
"allow-plugins": {
"composer/package-versions-deprecated": true,
"idmarinas/composer-plugin": true,
"symfony/flex": true,
"symfony/runtime": true
},
"optimize-autoloader": false,
"preferred-install": {
"*": "dist"
},
"sort-packages": true
},
"autoload": {
"psr-4": {
"Idm\\Bundle\\Template\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"App\\": "app/src/",
"Idm\\Bundle\\Template\\Tests\\": "tests/",
"DataFixtures\\": "fixtures/",
"Factory\\": "factories/"
}
},
"scripts": {
"test:fixtures:load": [
"php bin/console doctrine:schema:drop --env=test --force --ansi",
"php bin/console doctrine:schema:update --env=test --force --complete --ansi",
"php bin/console doctrine:fixtures:load --env=test -n --ansi"
],
"dev:fixtures:load": [
"php bin/console doctrine:schema:drop --env=dev --force --ansi",
"php bin/console doctrine:schema:update --env=dev --force --complete --ansi",
"php bin/console doctrine:fixtures:load --env=dev -n --ansi"
]
},
"funding": [
{
"type": "paypal",
"url": "https://www.paypal.me/idmarinas"
},
{
"type": "github-sponsors",
"url": "https://github.com/sponsors/idmarinas"
}
]
}