Skip to content

Commit 0bc17ce

Browse files
authored
Move all files to src (#233)
* Move all repos to a src folder * Update packages composer.json autoload * Adding autoload to root package * Resolve directory better * Bugfixes * Updated file referenes * CI fixes * Rebase fix * phpunit config * Moved files
1 parent 98d1445 commit 0bc17ce

File tree

69 files changed

+9
-11
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

69 files changed

+9
-11
lines changed

composer.json

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -21,10 +21,12 @@
2121
},
2222
"autoload": {
2323
"psr-4": {
24-
"AsyncAws\\Core\\": ""
25-
},
26-
"exclude-from-classmap": [
27-
"/Tests/"
28-
]
24+
"AsyncAws\\Core\\": "src"
25+
}
26+
},
27+
"autoload-dev": {
28+
"psr-4": {
29+
"AsyncAws\\Core\\Tests\\": "tests/"
30+
}
2931
}
3032
}

phpunit.xml.dist

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -14,17 +14,13 @@
1414

1515
<testsuites>
1616
<testsuite name="Test Suite">
17-
<directory>./Tests/</directory>
17+
<directory>./tests/</directory>
1818
</testsuite>
1919
</testsuites>
2020

2121
<filter>
2222
<whitelist>
23-
<directory>./</directory>
24-
<exclude>
25-
<directory>./Tests</directory>
26-
<directory>./vendor</directory>
27-
</exclude>
23+
<directory>./src</directory>
2824
</whitelist>
2925
</filter>
3026
</phpunit>
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)