-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
96 lines (96 loc) · 2.54 KB
/
Copy pathcomposer.json
File metadata and controls
96 lines (96 loc) · 2.54 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
{
"name": "idmarinas/template-bundle",
"description": "Template for create a custom Symfony ^6.4 and ^7.1 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": "35842929+idmarinas@users.noreply.github.com",
"role": "Author, Developer, Maintainer"
}
],
"support": {
"issues": "https://github.com/idmarinas/idm-template-bundle/issues"
},
"minimum-stability": "stable",
"prefer-stable": true,
"require": {
"php": "^8.3",
"symfony/config": "^6.4 | ^7.1 | ^8.0",
"symfony/dependency-injection": "^6.4 | ^7.1 | ^8.0",
"symfony/framework-bundle": "^6.4 | ^7.1 | ^8.0"
},
"require-dev": {
"dama/doctrine-test-bundle": "^8.2",
"doctrine/doctrine-fixtures-bundle": "^3.0 | ^4.0",
"idmarinas/composer-plugin": "^1.0",
"php-mock/php-mock-phpunit": "^2.12",
"phpunit/phpunit": "^12.5",
"rector/rector": "^2.0",
"symfony/browser-kit": "^6.4 | ^7.1 | ^8.0",
"symfony/console": "^6.4 | ^7.1 | ^8.0",
"symfony/css-selector": "^6.4 | ^7.1 | ^8.0",
"symfony/maker-bundle": "^1.61",
"symfony/runtime": "^6.4 | ^7.1 | ^8.0",
"symfony/twig-bundle": "^6.4 | ^7.1 | ^8.0",
"zenstruck/foundry": "^2.3"
},
"autoload": {
"psr-4": {
"Idm\\Bundle\\Template\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"App\\": "tests/app/src/",
"Idm\\Bundle\\Template\\Tests\\": "tests/"
}
},
"scripts": {
"test:fixtures:load": [
"php bin/console doctrine:schema:drop --env=test --force --ansi",
"php bin/console doctrine:schema:update --env=test --force --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 --ansi",
"php bin/console doctrine:fixtures:load --env=dev -n --ansi"
]
},
"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
},
"funding": [
{
"type": "paypal",
"url": "https://www.paypal.me/idmarinas"
},
{
"type": "github-sponsors",
"url": "https://github.com/sponsors/idmarinas"
}
],
"extra": {
"thanks": {
"name": "idmarinas/template-bundle",
"url": "https://github.com/idmarinas/template-bundle"
}
}
}