-
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
1588a7d
commit e7331d8
Showing
125 changed files
with
3,283 additions
and
8,897 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,8 +1,4 @@ | ||
# Ignore vendors | ||
/vendor | ||
|
||
# Ignore composer.lock file | ||
/build/ | ||
/vendor/ | ||
/composer.lock | ||
|
||
# Ignore build | ||
/build | ||
/phpunit.xml |
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
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,14 +1,14 @@ | ||
{ | ||
"name": "awd-studio/novaposhta", | ||
"description": "NovaPoshta API SDK for PHP", | ||
"type": "library", | ||
"license": "MIT", | ||
"authors": [ | ||
{ | ||
"name": "Anton Karpov", | ||
"email": "[email protected]", | ||
"role": "Developer" | ||
"email": "[email protected]" | ||
} | ||
], | ||
"description": "Powerful & Simple NovaPoshta API SDK for PHP", | ||
"keywords": [ | ||
"branch-offices", | ||
"delivery", | ||
|
@@ -25,35 +25,30 @@ | |
"ukraine", | ||
"wrapper-api" | ||
], | ||
"homepage": "https://github.com/awd-studio/NovaPoshta", | ||
"support": { | ||
"issues": "https://github.com/awd-studio/NovaPoshta/issues", | ||
"source": "https://github.com/awd-studio/NovaPoshta" | ||
}, | ||
"minimum-stability": "dev", | ||
"type": "library", | ||
"require": { | ||
"php": "^7.0", | ||
"ext-json": "*" | ||
"php": "^7.2", | ||
"ext-json": "*", | ||
"ext-curl": "*" | ||
}, | ||
"require-dev": { | ||
"phpunit/phpunit": "^6", | ||
"php-coveralls/php-coveralls": "^2.0@dev" | ||
"phpunit/phpunit": "^7.4.0", | ||
"php-coveralls/php-coveralls": "2.1.x-dev" | ||
}, | ||
"autoload": { | ||
"psr-4": { | ||
"NP\\": "src/NP" | ||
"AwdStudio\\NovaPoshta\\": "src/NovaPoshta" | ||
} | ||
}, | ||
"autoload-dev": { | ||
"psr-4": { | ||
"NP\\Test\\": "tests/NP", | ||
"NP\\Mock\\": "tests/Mock" | ||
"AwdStudio\\NovaPoshta\\Test\\": "tests/NovaPoshta", | ||
"AwdStudio\\NovaPoshta\\Mock\\": "tests/Mock" | ||
} | ||
}, | ||
"scripts": { | ||
"test": "vendor/bin/phpunit", | ||
"coverage": "vendor/bin/phpunit -c ./phpunit.xml.dist", | ||
"test": "vendor/bin/phpunit --bootstrap vendor/autoload.php", | ||
"coverage": "vendor/bin/phpunit --bootstrap vendor/autoload.php -c ./phpunit.xml.dist", | ||
"coveralls": "php vendor/bin/coveralls -v" | ||
} | ||
}, | ||
"minimum-stability": "dev" | ||
} |
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
Oops, something went wrong.