-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathcomposer.json
More file actions
137 lines (137 loc) · 7.57 KB
/
composer.json
File metadata and controls
137 lines (137 loc) · 7.57 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
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
129
130
131
132
133
134
135
136
137
{
"type": "project",
"version": "0.1.31",
"license": "LicenseRef-Source-First-License-1.1",
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"php": ">=8.5",
"ext-ctype": "*",
"ext-iconv": "*",
"antlr/antlr4-php-runtime": "^0.9.1",
"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": "^2.1",
"php-amqplib/php-amqplib": "^3.6",
"predis/predis": "^3.4",
"ramsey/uuid": "^4.7",
"symfony/asset": "7.4.*",
"symfony/console": "7.4.*",
"symfony/dotenv": "7.4.*",
"symfony/event-dispatcher": "7.4.*",
"symfony/filesystem": "7.4.*",
"symfony/flex": "^2.4",
"symfony/framework-bundle": "7.4.*",
"symfony/monolog-bundle": "^3.10",
"symfony/process": "7.4.*",
"symfony/runtime": "7.4.*",
"symfony/stopwatch": "7.4.*",
"symfony/string": "7.4.*",
"symfony/yaml": "7.4.*",
"syndesi/cypher-entity-manager": "^0.2.0",
"syndesi/elastic-entity-manager": "^0.1.0",
"syndesi/mongo-entity-manager": "^0.2.0",
"thecodingmachine/safe": "^v3.3",
"tuupola/base58": "^2.1"
},
"require-dev": {
"beste/psr-testlogger": "^1.0",
"brianium/paratest": "^7.13",
"friendsofphp/php-cs-fixer": "^3.48",
"infection/infection": "^0.32",
"phpbench/phpbench": "^1.2",
"phpmd/phpmd": "^2.15",
"phpspec/prophecy-phpunit": "^2.1",
"phpstan/phpstan": "^2.1",
"phpunit/php-code-coverage": "^12",
"phpunit/phpunit": "^12",
"symfony/maker-bundle": "^1.53",
"symfony/phpunit-bridge": "^7.2",
"symfony/web-profiler-bundle": "7.4.*",
"thecodingmachine/phpstan-safe-rule": "^1.4",
"vimeo/psalm": "^6.2"
},
"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/"
},
"classmap": [
"antlr/dist/"
]
},
"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:unit:test": "php vendor/bin/paratest -p 6 --configuration tests/phpunit.xml.dist --group test",
"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 --exclude-group 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:feature:test-fast": "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:with-different-configuration": "cp -f ./config/packages/ember_nexus.yaml ./config/packages/ember_nexus_orig.yaml.dis && cp -f ./tests/ExampleGenerationControllerWithDifferentConfiguration/configuration.yml ./config/packages/ember_nexus.yaml && php bin/console cache:clear && php vendor/phpunit/phpunit/phpunit --configuration tests/phpunit.feature.xml.dist ./tests/ExampleGenerationControllerWithDifferentConfiguration && mv -f ./config/packages/ember_nexus_orig.yaml.dis ./config/packages/ember_nexus.yaml && 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-orig": "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-controller:test": "php vendor/phpunit/phpunit/phpunit --configuration tests/phpunit.feature.xml.dist ./tests/ExampleGenerationController --group test",
"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 vendor/friendsofphp/php-cs-fixer/php-cs-fixer fix --config=tests/.php-cs-fixer.dist.php --allow-risky=yes --dry-run",
"cs:fix": "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",
"build:antlr": "./bin/build-antlr.sh",
"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.4.*"
}
}
}