File tree 2 files changed +5
-3
lines changed 2 files changed +5
-3
lines changed Original file line number Diff line number Diff line change 1
1
#!/usr/bin/env php
2
2
<?php
3
3
4
- if (file_exists (__DIR__ . '/../../../../vendor/autoload.php ' )) {
4
+ if (file_exists (getcwd () . '/vendor/autoload.php ' )) {
5
+ require getcwd () . '/vendor/autoload.php ' ;
6
+ } else if (file_exists (__DIR__ . '/../../../../vendor/autoload.php ' )) {
5
7
require __DIR__ . '/../../../../vendor/autoload.php ' ;
6
8
} else if (file_exists (__DIR__ . '/../../../vendor/autoload.php ' )) {
7
9
require __DIR__ . '/../../../vendor/autoload.php ' ;
Original file line number Diff line number Diff line change 37
37
"symfony/deprecation-contracts" : " *" ,
38
38
"react/child-process" : " ^0.7" ,
39
39
"react/async" : " ^4.1" ,
40
- "react/promise-timer" : " ^1.10"
40
+ "react/promise-timer" : " ^1.10" ,
41
+ "symfony/http-client" : " ^6.0"
41
42
},
42
43
"require-dev" : {
43
44
"phpunit/phpunit" : " ^10.0" ,
50
51
"rector/rector" : " ^0.15" ,
51
52
"php-etl/phpunit-extension" : " 0.7.*" ,
52
53
"mikey179/vfsstream" : " ^1.6" ,
53
- "symfony/http-client" : " ^6.3" ,
54
54
"friendsofphp/php-cs-fixer" : " ^3.38"
55
55
},
56
56
"suggest" : {
You can’t perform that action at this time.
0 commit comments