Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .github/workflows/e2e-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -171,6 +171,11 @@ jobs:
export PHPSTAN_RESULT_CACHE_PATH=/some/path
ACTUAL=$(../../bin/phpstan dump-parameters -c phpstan.neon --json -l 9 | jq --raw-output '.resultCachePath')
[[ "$ACTUAL" == "/some/path" ]];
- script: |
cd e2e/statement-parameter
PARAMETERS=$(../../bin/phpstan dump-parameters -c phpstan.neon --json -l 9)
../bashunit -a equals 'PHPSTAN' "$(echo "$PARAMETERS" | jq --raw-output '.statementParameter')"
../bashunit -a equals 'PHPSTAN/suffix' "$(echo "$PARAMETERS" | jq --raw-output '.concatenatedStatementParameter')"
- script: |
cd e2e/result-cache-8
composer install
Expand Down
1 change: 0 additions & 1 deletion build/composer-dependency-analyser.php
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@
'symfony/process',
'symfony/service-contracts',
'symfony/string',
'nette/php-generator',
];

$unknownClasses = [
Expand Down
80 changes: 1 addition & 79 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
"hoa/file": "1.17.07.11",
"jetbrains/phpstorm-stubs": "dev-master#709e512210784a7c0a677b3a89d35def844a59b9",
"nette/bootstrap": "^3.0",
"nette/di": "^3.1.4",
"nette/di": "^3.1.10",
"nette/neon": "3.3.4",
"nette/php-generator": "3.6.9",
"nette/schema": "^1.2.2",
Expand Down Expand Up @@ -139,7 +139,6 @@
"patches/dom_c.patch"
],
"nette/di": [
"patches/DependencyChecker.patch",
"patches/Resolver.patch"
],
"symfony/console": [
Expand Down Expand Up @@ -168,83 +167,6 @@
"tests/bench"
]
},
"repositories": [
{
"type": "package",
"package": {
"name": "nette/di",
"version": "v3.1.5",
"source": {
"type": "git",
"url": "https://github.com/nette/di.git",
"reference": "00ea0afa643b3b4383a5cd1a322656c989ade498"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/nette/di/zipball/00ea0afa643b3b4383a5cd1a322656c989ade498",
"reference": "00ea0afa643b3b4383a5cd1a322656c989ade498",
"shasum": ""
},
"require": {
"ext-tokenizer": "*",
"nette/neon": "^3.3 || ^4.0",
"nette/php-generator": "^3.5.4 || ^4.0",
"nette/robot-loader": "^3.2 || ~4.0.0",
"nette/schema": "^1.2",
"nette/utils": "^3.2.5 || ~4.0.0",
"php": "7.2 - 8.3"
},
"require-dev": {
"nette/tester": "^2.4",
"phpstan/phpstan": "^1.0",
"tracy/tracy": "^2.9"
},
"type": "library",
"extra": {
"branch-alias": {
"dev-master": "3.1-dev"
}
},
"autoload": {
"classmap": [
"src/"
]
},
"notification-url": "https://packagist.org/downloads/",
"license": [
"BSD-3-Clause",
"GPL-2.0-only",
"GPL-3.0-only"
],
"authors": [
{
"name": "David Grudl",
"homepage": "https://davidgrudl.com"
},
{
"name": "Nette Community",
"homepage": "https://nette.org/contributors"
}
],
"description": "💎 Nette Dependency Injection Container: Flexible, compiled and full-featured DIC with perfectly usable autowiring and support for all new PHP features.",
"homepage": "https://nette.org",
"keywords": [
"compiled",
"di",
"dic",
"factory",
"ioc",
"nette",
"static"
],
"support": {
"issues": "https://github.com/nette/di/issues",
"source": "https://github.com/nette/di/tree/v3.1.5"
},
"time": "2023-10-02T19:58:38+00:00"
}
}
],
"scripts": {
"post-autoload-dump": "@php -r \"if (is_file('build/generate-turbo-stubs.php')) include 'build/generate-turbo-stubs.php';\""
},
Expand Down
Loading
Loading