Skip to content

Commit 6dea72b

Browse files
author
Greg Bowler
committedFeb 24, 2020
Define namespace roots
1 parent dc0c2ee commit 6dea72b

File tree

3 files changed

+39
-0
lines changed

3 files changed

+39
-0
lines changed
 

‎.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
/vendor

‎composer.json

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
{
2+
"name": "authwave/php-client",
3+
"description": "PHP client library to implement Authwave in your application",
4+
5+
"require": {
6+
"php": ">=7.4"
7+
},
8+
9+
"autoload": {
10+
"psr-4": {
11+
"Authwave\\": "./src"
12+
}
13+
},
14+
"autoload-dev": {
15+
"psr-4": {
16+
"Authwave\\Test\\": "./test/phpunit"
17+
}
18+
}
19+
}

‎composer.lock

+19
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)
Please sign in to comment.