-
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.
Merge pull request #6 from keboola/graceful-destructor
fixes #6
- Loading branch information
Showing
2 changed files
with
44 additions
and
35 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,29 +1,32 @@ | ||
{ | ||
"name": "keboola/php-temp", | ||
"description": "Temp service - handles application's temporary files", | ||
"license": "MIT", | ||
"keywords": ["filesystem", "temp"], | ||
"authors": [ | ||
{ | ||
"name": "Miro Cillik", | ||
"email": "[email protected]" | ||
}, | ||
{ | ||
"name": "Ondrej Vana", | ||
"email": "[email protected]" | ||
} | ||
], | ||
"require": { | ||
"symfony/filesystem": ">2.1.0", | ||
"php": ">=5.3.3" | ||
"name": "keboola/php-temp", | ||
"description": "Temp service - handles application's temporary files", | ||
"license": "MIT", | ||
"keywords": [ | ||
"filesystem", | ||
"temp" | ||
], | ||
"authors": [ | ||
{ | ||
"name": "Miro Cillik", | ||
"email": "[email protected]" | ||
}, | ||
"require-dev": { | ||
"phpunit/phpunit": "^5.2", | ||
"codeclimate/php-test-reporter": "dev-master" | ||
}, | ||
"autoload": { | ||
"psr-0": { | ||
"Keboola\\Temp": "src/" | ||
} | ||
} | ||
{ | ||
"name": "Ondrej Vana", | ||
"email": "[email protected]" | ||
} | ||
], | ||
"require": { | ||
"symfony/filesystem": ">2.1.0", | ||
"php": ">=5.3.3" | ||
}, | ||
"require-dev": { | ||
"phpunit/phpunit": "^5.2", | ||
"codeclimate/php-test-reporter": "dev-master" | ||
}, | ||
"autoload": { | ||
"psr-0": { | ||
"Keboola\\Temp": "src/" | ||
} | ||
} | ||
} |
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