Skip to content

Commit aab42fe

Browse files
committed
Merge branch 'cleanup'
2 parents ad56ce2 + 1312689 commit aab42fe

File tree

19 files changed

+100
-55
lines changed

19 files changed

+100
-55
lines changed

.php-cs-fixer.dist.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@
1010
__DIR__ . '/scripts',
1111
])
1212
->append([
13-
__DIR__ . '/bin/sli',
1413
__DIR__ . '/bootstrap.php',
14+
__DIR__ . '/src/Toolkit/Sli/sli',
1515
__DIR__ . '/tests/phpstan-conditional.php',
1616
__DIR__ . '/tests/test-sli',
1717
__DIR__ . '/stubs/ADOConnection.stub',

.prettyphp

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
{
22
"src": [
3-
"bin/sli",
43
"scripts",
54
"src",
65
"stubs",
@@ -14,7 +13,7 @@
1413
".php-cs-fixer.dist.php",
1514
"bootstrap.php"
1615
],
17-
"includeIfPhp": "/\\.stub$/",
16+
"includeIfPhp": "/(\\/sli|\\.stub)$/",
1817
"enable": [
1918
"preserve-one-line",
2019
"strict-lists"

bin/sli

Lines changed: 0 additions & 35 deletions
This file was deleted.

bin/sli

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
../src/Toolkit/Sli/sli

composer.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,6 +66,7 @@
6666
},
6767
"provide": {
6868
"psr/event-dispatcher-implementation": "^1",
69+
"psr/http-client-implementation": "^1",
6970
"psr/http-factory-implementation": "^1",
7071
"psr/http-message-implementation": "^1.1 || ^2",
7172
"psr/log-implementation": "^1",
@@ -104,7 +105,7 @@
104105
]
105106
},
106107
"bin": [
107-
"bin/sli"
108+
"src/Toolkit/Sli/sli"
108109
],
109110
"config": {
110111
"allow-plugins": {

composer.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

phpstan.neon.dist

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@ includes:
55
parameters:
66
level: 9
77
paths:
8-
- bin/sli
98
- scripts
109
- src
10+
- src/Toolkit/Sli/sli
1111
- stubs
1212
- tests/3rdparty
1313
- tests/fixtures

src/Toolkit/Container/composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
"salient/console": "self.version",
2121
"salient/contracts": "self.version",
2222
"salient/core": "self.version",
23-
"salient/utility": "self.version"
23+
"salient/utils": "self.version"
2424
},
2525
"provide": {
2626
"psr/container-implementation": "^2"

src/Toolkit/Core/composer.json

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,9 @@
1616
"require": {
1717
"php": ">=7.4",
1818
"psr/event-dispatcher": "^1",
19+
"salient/container": "self.version",
1920
"salient/contracts": "self.version",
21+
"salient/iterators": "self.version",
2022
"salient/utils": "self.version"
2123
},
2224
"provide": {

src/Toolkit/Curler/composer.json

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,15 @@
1515
},
1616
"require": {
1717
"php": ">=7.4",
18+
"psr/http-client": "^1",
19+
"psr/http-message": "^1.1 || ^2",
1820
"salient/contracts": "self.version",
19-
"salient/core": "self.version"
21+
"salient/core": "self.version",
22+
"salient/http": "self.version",
23+
"salient/utils": "self.version"
24+
},
25+
"provide": {
26+
"psr/http-client-implementation": "^1"
2027
},
2128
"autoload": {
2229
"psr-4": {

0 commit comments

Comments
 (0)