Skip to content

Commit 81bea61

Browse files
committed
+ init
1 parent 2e6417f commit 81bea61

13 files changed

+2385
-0
lines changed

.gitignore

+31
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
.idea/**/workspace.xml
2+
.idea/**/tasks.xml
3+
.idea/**/usage.statistics.xml
4+
.idea/**/dictionaries
5+
.idea/**/shelf
6+
.idea/**/contentModel.xml
7+
.idea/**/dataSources/
8+
.idea/**/dataSources.ids
9+
.idea/**/dataSources.local.xml
10+
.idea/**/sqlDataSources.xml
11+
.idea/**/dynamic.xml
12+
.idea/**/uiDesigner.xml
13+
.idea/**/dbnavigator.xml
14+
.idea/**/gradle.xml
15+
.idea/**/libraries
16+
cmake-build-*/
17+
.idea/**/mongoSettings.xml
18+
*.iws
19+
out/
20+
.idea_modules/
21+
atlassian-ide-plugin.xml
22+
.idea/replstate.xml
23+
com_crashlytics_export_strings.xml
24+
crashlytics.properties
25+
crashlytics-build.properties
26+
fabric.properties
27+
.idea/httpRequests
28+
.idea/caches/build_file_checksums.ser
29+
composer.phar
30+
/vendor/
31+
.phpunit.result.cache

.travis.yml

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
language: php
2+
3+
php:
4+
- '7.4'
5+
6+
sudo: false
7+
8+
matrix:
9+
fast_finish: true
10+
11+
script: vendor/bin/phpunit
12+
13+
before_script:
14+
- composer install

composer.json

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
{
2+
"name": "pburggraf/file-handler",
3+
"license": "MIT",
4+
"type": "library",
5+
"description": "Simple system for manipulating files in php with the possibility to use different file handler",
6+
"autoload": {
7+
"psr-4": {
8+
"PBurggraf\\FileHandler\\": "src"
9+
}
10+
},
11+
"require": {
12+
"php": "^7.4"
13+
},
14+
"require-dev": {
15+
"phpstan/phpstan": "^0.12",
16+
"phpstan/phpstan-phpunit": "^0.12",
17+
"phpunit/phpunit": "~8.0",
18+
"mikey179/vfsstream": "~1.0"
19+
}
20+
}

0 commit comments

Comments
 (0)