feat: rename package name

This commit is contained in:
Soner Sayakci
2024-07-30 21:22:22 +02:00
parent 0005627e14
commit bf762350e9
24 changed files with 98 additions and 71 deletions
+6 -6
View File
@@ -1,10 +1,10 @@
{
"name": "shyim/testcontainer",
"description": "Testcontainer implementation in PHP",
"name": "testcontainers/testcontainers",
"description": "Testcontainers implementation in PHP",
"license": "MIT",
"keywords": [
"docker",
"testcontainer"
"testcontainers"
],
"type": "library",
"authors": [
@@ -15,7 +15,7 @@
],
"require": {
"php": ">= 8.1",
"symfony/process": "^5.3|^6.0|^7.0"
"symfony/process": "^5.0|^6.0|^7.0"
},
"require-dev": {
"phpunit/phpunit": "^9.5",
@@ -28,12 +28,12 @@
},
"autoload": {
"psr-4": {
"Testcontainer\\": "src/"
"Testcontainers\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Testcontainer\\Tests\\": "tests/"
"Testcontainers\\Tests\\": "tests/"
}
},
"scripts": {