Fix namespace casing for consistency across README and Surprise class

This commit is contained in:
Dominik Krenn 2025-07-04 11:51:03 +02:00
parent d70989d0ce
commit def50fb6ab
3 changed files with 4 additions and 4 deletions

View File

@ -18,8 +18,8 @@ composer require projects/boxxo
## Usage ## Usage
```php ```php
use projects\Boxxo\Snack; use Projects\Boxxo\Snack;
use projects\Boxxo\Test\Surprise; use Projects\Boxxo\Test\Surprise;
echo Snack::squeak(); // Outputs: UwU from the boxxo 💜 echo Snack::squeak(); // Outputs: UwU from the boxxo 💜

View File

@ -5,7 +5,7 @@
"license": "MIT", "license": "MIT",
"autoload": { "autoload": {
"psr-4": { "psr-4": {
"projects\\Boxxo\\": "src/" "Projects\\Boxxo\\": "src/"
} }
}, },
"authors": [ "authors": [

View File

@ -1,5 +1,5 @@
<?php <?php
namespace projects\Boxxo\Test; namespace Projects\Boxxo\Test;
class Surprise { class Surprise {
public static function open() { public static function open() {