-
Notifications
You must be signed in to change notification settings - Fork 11
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
Showing
12 changed files
with
336 additions
and
1,978 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,9 +1,4 @@ | ||
# IntelliJ project files | ||
/vendor/ | ||
.idea | ||
*.iml | ||
out | ||
gen | ||
|
||
.DS_Store | ||
/vendor | ||
/index.php | ||
composer.lock |
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,18 +1,9 @@ | ||
language: php | ||
|
||
php: | ||
- 5.6 | ||
- 7.0 | ||
- hhvm | ||
|
||
- 7.1 | ||
- 7.2 | ||
before_script: | ||
- composer self-update | ||
- composer install | ||
|
||
- composer install --no-interaction | ||
script: | ||
- vendor/bin/phpunit tests | ||
|
||
matrix: | ||
allow_failures: | ||
- hhvm | ||
fast_finish: true | ||
- ./vendor/bin/phpunit |
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,34 +1,48 @@ | ||
{ | ||
"name": "hedii/colissimo-api", | ||
"minimum-stability": "stable", | ||
"description": "A php API to track Colissimo (La Poste) parcels", | ||
"keywords": ["colissimo", "api", "colissimoapi", "hedii"], | ||
"description": "A php package to track Colissimo (La Poste) parcels", | ||
"keywords": ["colissimo", "api", "colissimoapi", "hedii", "la poste", "laposte"], | ||
"license": "MIT", | ||
"homepage": "https://github.com/hedii/colissimo-api", | ||
"authors": [ | ||
{ | ||
"name": "Hedi Chaibi", | ||
"email": "hedi.chaibs@gmail.com" | ||
"email": "contact@hedichaibi.com" | ||
} | ||
], | ||
"support": { | ||
"issues": "https://github.com/hedii/colissimo-api/issues", | ||
"source": "https://github.com/hedii/colissimo-api", | ||
"email": "hedi.chaibs@gmail.com" | ||
"email": "contact@hedichaibi.com" | ||
}, | ||
"require": { | ||
"php": ">=5.6", | ||
"php": "^7.1.0", | ||
"ext-curl": "*", | ||
"ext-xml": "*", | ||
"symfony/dom-crawler": "^3.0", | ||
"symfony/css-selector": "^3.0" | ||
"guzzlehttp/guzzle": "^6.3", | ||
"symfony/css-selector": "^3.0", | ||
"symfony/dom-crawler": "^3.0" | ||
}, | ||
"require-dev": { | ||
"phpunit/phpunit": "5.0.*" | ||
"phpunit/phpunit": "^7.0" | ||
}, | ||
"autoload": { | ||
"psr-4": { | ||
"Hedii\\": "src/", | ||
"Hedii\\ColissimoApi\\": "src/ColissimoApi" | ||
"Hedii\\ColissimoApi\\": "src/" | ||
} | ||
}, | ||
"autoload-dev": { | ||
"psr-4": { | ||
"Hedii\\ColissimoApi\\Tests\\": "tests/" | ||
} | ||
}, | ||
"scripts": { | ||
"test": "vendor/bin/phpunit" | ||
}, | ||
"config": { | ||
"preferred-install": "dist", | ||
"sort-packages": true, | ||
"optimize-autoloader": true | ||
} | ||
} |
Oops, something went wrong.