-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
82 lines (82 loc) · 2.8 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
{
"name": "xm/symfony-bundle",
"description": "Provides classes & services typically used in XM Media Symfony projects.",
"type": "symfony-bundle",
"homepage": "https://github.com/xmmedia/XMSymfonyBundle",
"license": "MIT",
"authors": [
{
"name": "Darryl Hein",
"email": "[email protected]"
}
],
"require": {
"php": "^8.1 || ^8.2 || ^8.3",
"ext-json": "*",
"ext-pdo": "*",
"bjeavons/zxcvbn-php": "^1.2",
"cloudflare/sdk": "^1.1",
"doctrine/doctrine-bundle": "^2.0",
"doctrine/orm": "^2.5",
"egulias/email-validator": "^2.1 || ^3.0 || ^4.0",
"marc-mabe/php-enum": "^4.1",
"moneyphp/money": "^3.2 || ^4.0",
"nesbot/carbon": "^2.24 || ^3.0",
"odolbeau/phone-number-bundle": "^3.0",
"overblog/graphql-bundle": "^0.15.0 || ^1.0",
"prooph/event-store-bus-bridge": "^3.3",
"prooph/event-store-symfony-bundle": "^0.10.0 || ^0.11.0",
"prooph/pdo-event-store": "^1.11",
"ramsey/collection": "^1.1 || ^2.0",
"ramsey/uuid": "^4.0",
"ramsey/uuid-doctrine": "^1.5 || ^2.0",
"symfony/form": "^6.2 || ^6.3 || ^6.4 || ^7.0",
"symfony/framework-bundle": "^6.2 || ^6.3 || ^6.4 || ^7.0",
"symfony/http-client": "^6.2 || ^6.3 || ^6.4 || ^7.0",
"symfony/messenger": "^6.2 || ^6.3 || ^6.4 || ^7.0",
"symfony/security-bundle": "^6.2 || ^6.3 || ^6.4 || ^7.0",
"symfony/validator": "^6.2 || ^6.3 || ^6.4 || ^7.0",
"wildbit/postmark-php": "^2.8 || ^3.0 || ^4.0 || ^5.0 || ^6.0"
},
"require-dev": {
"ekino/phpstan-banned-code": "^1.0",
"friendsofphp/php-cs-fixer": "^3.0",
"fakerphp/faker": "^1.8",
"jetbrains/phpstorm-attributes": "^1.0",
"mockery/mockery": "^1.2",
"pentatrion/vite-bundle": "^6.0",
"phpstan/phpstan": "^1.0",
"phpstan/phpstan-deprecation-rules": "^1.0",
"phpstan/phpstan-mockery": "^1.0",
"phpstan/phpstan-phpunit": "^1.0",
"phpstan/phpstan-symfony": "^1.0",
"phpstan/phpstan-webmozart-assert": "^1.0",
"phpunit/phpunit": "^9.0",
"rector/rector": "^0.18",
"symfony/debug-pack": "^1.0.0",
"symfony/phpunit-bridge": "^7.0",
"symfony/maker-bundle": "^1.0",
"symfony/test-pack": "^1.0",
"symfony/webpack-encore-bundle": "^1.0"
},
"config": {
"sort-packages": true
},
"autoload": {
"psr-4": {
"Xm\\SymfonyBundle\\": ""
},
"exclude-from-classmap": [
"/Tests/"
]
},
"scripts": {
"test": "vendor/bin/simple-phpunit",
"test:coverage": "vendor/bin/simple-phpunit --coverage-html coverage",
"cs": "php-cs-fixer fix -v --dry-run --config=./.php-cs-fixer.dist.php",
"cs:fix": "php-cs-fixer fix -v --config=./.php-cs-fixer.dist.php",
"static": "php -d memory_limit=-1 vendor/bin/phpstan analyse",
"rector": "vendor/bin/rector --dry-run --xdebug",
"rector:fix": "vendor/bin/rector --xdebug"
}
}