2 Commits
0.1.2 ... 0.2.0

Author SHA1 Message Date
1a560fad40 Lower flysystem dependency 2021-04-10 14:00:01 +02:00
b14d0b40a7 Update project 2021-04-10 13:53:17 +02:00
2 changed files with 34 additions and 28 deletions

1
.gitignore vendored
View File

@@ -6,3 +6,4 @@ tmp/
.vs/
.vscode/
coverage/
.phpunit*

View File

@@ -10,21 +10,26 @@
}
],
"require": {
"php": "^8.0",
"league/flysystem": "^1.0",
"psr/http-message": "^1.0",
"guzzlehttp/psr7": "^1.4"
},
"require-dev": {
"phpunit/phpunit": "^7.0"
"phpunit/phpunit": "^9.5"
},
"autoload": {
"psr-4": {
"IQParts\\Content\\": ["src"]
"IQParts\\Content\\": [
"src"
]
}
},
"autoload-dev": {
"psr-4": {
"IQParts\\ContentTest\\": ["test"]
"IQParts\\ContentTest\\": [
"test"
]
}
}
}