Skip to content

Commit 7422af5

Browse files
ZarlengoToptalChris
andauthored
Added pickup and order (#77)
* 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>
1 parent a2edfa7 commit 7422af5

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

45 files changed

+1588
-399
lines changed

.circleci/config.yml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
version: 2.1
2+
orbs:
3+
php: circleci/php@1.1.0
4+
5+
jobs:
6+
build:
7+
executor: php/default
8+
steps:
9+
- checkout
10+
- php/install-composer:
11+
install-version: 1.10.16
12+
- php/install-packages
13+
- run:
14+
name: Composer Update
15+
command: composer update
16+
- run:
17+
name: Test
18+
command: ./vendor/bin/phpunit

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
1-
/vendor
1+
/vendor
2+
*.cache

CHANGELOG

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
=== =2.0.0 2022-01-18
2+
- Add pickups
3+
- Add orders
4+
- Add CircleCi
5+
16
=== =1.3.2 2017-05-04
27
- Revert changes to namespacing to be revisted
38
- Fix parcel to parcels

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
The MIT License
22

3-
Copyright (c) 2014-2015 Shippo
3+
Copyright (c) 2014-2022 Shippo
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.4.2
1+
2.0.0

composer.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,13 +21,13 @@
2121
}
2222
],
2323
"require": {
24-
"php": ">=5.2",
24+
"php": ">=7.3",
2525
"ext-curl": "*",
2626
"ext-json": "*",
2727
"ext-mbstring": "*"
2828
},
2929
"require-dev": {
30-
"phpunit/phpunit": "5.5.*"
30+
"phpunit/phpunit": "9.5.*"
3131
},
3232
"autoload": {
3333
"classmap": ["lib/Shippo/"]

0 commit comments

Comments
 (0)