-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
4cbb0ed
commit ab5a833
Showing
1 changed file
with
34 additions
and
34 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,38 +1,38 @@ | ||
{ | ||
"name": "actuallyconnor/pseudo", | ||
"description": "PDO/MySQL Connection Mocking", | ||
"type": "library", | ||
"license": "MIT", | ||
"authors": [ | ||
{ | ||
"name": "Connor Smyth", | ||
"email": "[email protected]", | ||
"homepage": "https://connorsmyth.com", | ||
"role": "Developer" | ||
"name": "actuallyconnor/pseudo", | ||
"description": "PDO/MySQL Connection Mocking", | ||
"type": "library", | ||
"license": "MIT", | ||
"authors": [ | ||
{ | ||
"name": "Connor Smyth", | ||
"email": "[email protected]", | ||
"homepage": "https://connorsmyth.com", | ||
"role": "Developer" | ||
}, | ||
{ | ||
"name": "Josh Butts", | ||
"email": "[email protected]", | ||
"role": "Original Developer" | ||
} | ||
], | ||
"require": { | ||
"php": ">=8.0", | ||
"ext-pdo": "*", | ||
"ext-ctype": "*" | ||
}, | ||
{ | ||
"name": "Josh Butts", | ||
"email": "[email protected]", | ||
"role": "Original Developer" | ||
} | ||
], | ||
"require": { | ||
"php": ">=8.0", | ||
"ext-pdo": "*", | ||
"ext-ctype": "*", | ||
"phpunit/phpunit": "^11.3" | ||
}, | ||
"require-dev": { | ||
"phpunit/php-code-coverage": "^11.0" | ||
}, | ||
"autoload": { | ||
"psr-4": { | ||
"Pseudo\\": "src" | ||
} | ||
}, | ||
"autoload-dev": { | ||
"psr-4": { | ||
"Pseudo\\UnitTest\\": "tests/Unit" | ||
"require-dev": { | ||
"phpunit/phpunit": "^11.3", | ||
"phpunit/php-code-coverage": "^11.0" | ||
}, | ||
"autoload": { | ||
"psr-4": { | ||
"Pseudo\\": "src" | ||
} | ||
}, | ||
"autoload-dev": { | ||
"psr-4": { | ||
"Pseudo\\UnitTest\\": "tests/Unit" | ||
} | ||
} | ||
} | ||
} |