Skip to content

Commit

Permalink
Added pickup and order (#77)
Browse files Browse the repository at this point in the history
* Added pickup and order

* Updated tests & added circle ci

* Change version to 2.0

* Update date

* Update LICENSE

Co-authored-by: Chris <chris_eng@goshippo.com>
  • Loading branch information
ZarlengoToptal and Chris committed Jan 19, 2022
1 parent a2edfa7 commit 7422af5
Show file tree
Hide file tree
Showing 45 changed files with 1,588 additions and 399 deletions.
18 changes: 18 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
version: 2.1
orbs:
php: circleci/php@1.1.0

jobs:
build:
executor: php/default
steps:
- checkout
- php/install-composer:
install-version: 1.10.16
- php/install-packages
- run:
name: Composer Update
command: composer update
- run:
name: Test
command: ./vendor/bin/phpunit
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
/vendor
/vendor
*.cache
5 changes: 5 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
=== =2.0.0 2022-01-18
- Add pickups
- Add orders
- Add CircleCi

=== =1.3.2 2017-05-04
- Revert changes to namespacing to be revisted
- Fix parcel to parcels
Expand Down
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
The MIT License

Copyright (c) 2014-2015 Shippo
Copyright (c) 2014-2022 Shippo

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.4.2
2.0.0
4 changes: 2 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,13 +21,13 @@
}
],
"require": {
"php": ">=5.2",
"php": ">=7.3",
"ext-curl": "*",
"ext-json": "*",
"ext-mbstring": "*"
},
"require-dev": {
"phpunit/phpunit": "5.5.*"
"phpunit/phpunit": "9.5.*"
},
"autoload": {
"classmap": ["lib/Shippo/"]
Expand Down
Loading

0 comments on commit 7422af5

Please sign in to comment.