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
17 changes: 17 additions & 0 deletions .env.dist
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
# PubNub API Keys for Local Testing
# Copy this file to .env.dev and fill in your actual keys

# Required for most tests
PUBLISH_KEY=your-publish-key-here
SUBSCRIBE_KEY=your-subscribe-key-here

# Optional - for some advanced tests
SECRET_KEY=your-secret-key-here

# Optional - for PAM (Access Manager) tests
PUBLISH_PAM_KEY=your-pam-publish-key-here
SUBSCRIBE_PAM_KEY=your-pam-subscribe-key-here
SECRET_PAM_KEY=your-pam-secret-key-here

# Optional - UUID for mock tests (defaults to "UUID_MOCK")
UUID_MOCK=test-user
4 changes: 2 additions & 2 deletions .github/CODEOWNERS
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
* @seba-aln @xavrax @marcin-cebo
README.md @techwritermat @kazydek @seba-aln @xavrax
* @jakub-grzesiowski @marcin-cebo @xavrax @seba-aln
README.md @techwritermat @kazydek @jakub-grzesiowski @marcin-cebo @xavrax @seba-aln
6 changes: 6 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,12 @@
.DS_Store
coverage.clover

# Environment files (for local development) #
#############################################
.env.dev
.env.test
.env.prod

# GitHub Actions #
##################
.github/.release
3 changes: 2 additions & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,8 @@
"phpunit/phpunit": "^9.5",
"squizlabs/php_codesniffer": "^3.7",
"phpstan/phpstan": "^1.8",
"behat/behat": "^3.14"
"behat/behat": "^3.14",
"vlucas/phpdotenv": "^5.6"
},
"autoload": {
"psr-4": {
Expand Down
307 changes: 306 additions & 1 deletion composer.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading
Loading