-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcomposer.json
128 lines (128 loc) · 6.49 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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
{
"type": "project",
"version": "0.1.17",
"license": "LicenseRef-Source-First-License-1.1",
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"php": ">=8.3",
"ext-ctype": "*",
"ext-iconv": "*",
"async-aws/s3": "^2.2",
"guzzlehttp/guzzle": "^7.8",
"league/flysystem": "^3.23",
"league/flysystem-bundle": "^3.3",
"league/flysystem-ziparchive": "^3.23",
"mongodb/mongodb": "^1.17",
"php-amqplib/php-amqplib": "^3.6",
"predis/predis": "^2.2",
"ramsey/uuid": "^4.7",
"symfony/asset": "7.1.*",
"symfony/console": "7.1.*",
"symfony/dotenv": "7.1.*",
"symfony/event-dispatcher": "7.1.*",
"symfony/filesystem": "7.1.*",
"symfony/flex": "^2.4",
"symfony/framework-bundle": "7.1.*",
"symfony/monolog-bundle": "^3.10",
"symfony/runtime": "7.1.*",
"symfony/string": "7.1.*",
"symfony/yaml": "7.1.*",
"syndesi/cypher-entity-manager": "^0.1.0",
"syndesi/elastic-entity-manager": "^0.0.3",
"syndesi/mongo-entity-manager": "^0.0.6",
"thecodingmachine/safe": "^2.5",
"tuupola/base58": "^2.1"
},
"require-dev": {
"beste/psr-testlogger": "^1.0",
"boesing/psalm-plugin-stringf": "^1.4",
"brianium/paratest": "^7.4",
"friendsofphp/php-cs-fixer": "^3.48",
"infection/infection": "^0.27",
"phpbench/phpbench": "^1.2",
"phpmd/phpmd": "^2.15",
"phpspec/prophecy-phpunit": "^2.1",
"phpstan/phpstan": "^1.10",
"phpunit/php-code-coverage": "^10",
"phpunit/phpunit": "^10",
"symfony/maker-bundle": "^1.53",
"symfony/phpunit-bridge": "^7.1",
"symfony/stopwatch": "7.1.*",
"symfony/web-profiler-bundle": "7.1.*",
"thecodingmachine/phpstan-safe-rule": "^1.2",
"vimeo/psalm": "^5.21"
},
"config": {
"allow-plugins": {
"symfony/flex": true,
"symfony/runtime": true,
"infection/extension-installer": true,
"php-http/discovery": true
},
"sort-packages": true,
"process-timeout": 0
},
"autoload": {
"psr-4": {
"EmberNexusBundle\\": "lib/EmberNexusBundle/src/",
"App\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"App\\Tests\\": "tests/"
}
},
"replace": {
"symfony/polyfill-ctype": "*",
"symfony/polyfill-iconv": "*",
"symfony/polyfill-php72": "*",
"symfony/polyfill-php73": "*",
"symfony/polyfill-php74": "*",
"symfony/polyfill-php80": "*",
"symfony/polyfill-php81": "*"
},
"scripts": {
"auto-scripts": {
"cache:clear": "symfony-cmd",
"assets:install %PUBLIC_DIR%": "symfony-cmd"
},
"post-install-cmd": [
"@auto-scripts"
],
"post-update-cmd": [
"@auto-scripts"
],
"test:unit": "php vendor/bin/paratest -p 6 --configuration tests/phpunit.xml.dist",
"test:feature": "php bin/console cache:clear && ./bin/test-feature-prepare && php vendor/bin/paratest -p 6 --configuration tests/phpunit.feature.xml.dist ./tests/FeatureTests --exclude-group command,deprecated && php vendor/phpunit/phpunit/phpunit --configuration tests/phpunit.feature.xml.dist ./tests/FeatureTests --group command",
"test:feature:deprecated": "php bin/console cache:clear && ./bin/test-feature-prepare && php vendor/phpunit/phpunit/phpunit --configuration tests/phpunit.feature.xml.dist ./tests/FeatureTests --group deprecated",
"test:feature:test": "php bin/console cache:clear && ./bin/test-feature-prepare && php vendor/phpunit/phpunit/phpunit --configuration tests/phpunit.feature.xml.dist ./tests/FeatureTests --group test",
"test:example-generation-controller": "php bin/console cache:clear && ./bin/test-feature-prepare && php vendor/phpunit/phpunit/phpunit --configuration tests/phpunit.feature.xml.dist ./tests/ExampleGenerationController --exclude-group deprecated && php bin/console cache:clear",
"test:example-generation-controller:deprecated": "php bin/console cache:clear && ./bin/test-feature-prepare && php vendor/phpunit/phpunit/phpunit --configuration tests/phpunit.feature.xml.dist ./tests/ExampleGenerationController --group deprecated && php bin/console cache:clear",
"test:example-generation-controller:test": "php bin/console cache:clear && ./bin/test-feature-prepare && php vendor/phpunit/phpunit/phpunit --configuration tests/phpunit.feature.xml.dist ./tests/ExampleGenerationController --group test && php bin/console cache:clear",
"test:example-generation-command": "php bin/console cache:clear && ./bin/test-feature-command-prepare && php vendor/phpunit/phpunit/phpunit --configuration tests/phpunit.feature.xml.dist ./tests/ExampleGenerationCommand --exclude-group deprecated && php bin/console cache:clear",
"test:coverage:xml": "export XDEBUG_MODE=coverage && php ./vendor/phpunit/phpunit/phpunit --configuration tests/phpunit.xml.dist --coverage-clover coverage.xml",
"test:coverage:html": "export XDEBUG_MODE=coverage && php ./vendor/phpunit/phpunit/phpunit --configuration tests/phpunit.xml.dist --coverage-html ./tmp",
"test:mutant": "export XDEBUG_MODE=coverage && php vendor/infection/infection/bin/infection --configuration=tests/infection.json5 --threads=4",
"cs:list": "PHP_CS_FIXER_IGNORE_ENV=1 php vendor/friendsofphp/php-cs-fixer/php-cs-fixer fix --config=tests/.php-cs-fixer.dist.php --allow-risky=yes --dry-run",
"cs:fix": "PHP_CS_FIXER_IGNORE_ENV=1 php vendor/friendsofphp/php-cs-fixer/php-cs-fixer fix --config=tests/.php-cs-fixer.dist.php --allow-risky=yes",
"psalm": "php vendor/bin/psalm --config=tests/psalm.xml --show-info=true --no-cache",
"psalm:fix-dry": "php vendor/bin/psalm --config=tests/psalm.xml --alter --issues=MissingParamType,MissingReturnType,InvalidReturnType,InvalidNullableReturnType,MismatchingDocblockParamType --dry-run",
"psalm:fix-apply": "php vendor/bin/psalm --config=tests/psalm.xml --alter --issues=MissingParamType,MissingReturnType,InvalidReturnType,InvalidNullableReturnType,MismatchingDocblockParamType",
"phpstan": "vendor/bin/phpstan --configuration=tests/phpstan.neon",
"mess": "vendor/bin/phpmd src,lib,tests text tests/phpmd.xml",
"yml:lint": "docker run --rm -it -v \"$(pwd):/data\" cytopia/yamllint --config-file=tests/.yamllint .",
"markdown:lint": "docker run --rm -it -v \"$(pwd):/work\" tmknom/markdownlint '**/*.md' --config tests/.markdownlintrc --ignore vendor --ignore CHANGELOG.md --ignore var --ignore tmp",
"docs:serve": "docker run --rm -d -p 3000:3000 -v \"$(pwd)/docs:/docs\" sujaykumarh/docsify serve"
},
"conflict": {
"symfony/symfony": "*"
},
"extra": {
"symfony": {
"allow-contrib": false,
"require": "7.1.*"
}
}
}