Skip to content
This repository has been archived by the owner on Jan 1, 2023. It is now read-only.

Commit

Permalink
Initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
nesk committed Jan 24, 2018
0 parents commit b178f1b
Show file tree
Hide file tree
Showing 22 changed files with 897 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
/node_modules/
/vendor/
composer.lock
27 changes: 27 additions & 0 deletions composer.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
{
"name": "extractr-io/puphpeteer",
"description": "A Puppeteer bridge for PHP, supporting the full API.",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Johann Pardanaud",
"email": "[email protected]"
}
],
"require": {
"php": ">=7.1",
"extractr-io/rialto": "dev-master"
},
"autoload": {
"psr-4": {
"ExtractrIo\\Puphpeteer\\": "src/"
}
},
"scripts": {
"post-install-cmd": "npm install"
},
"config": {
"sort-packages": true
}
}
Loading

0 comments on commit b178f1b

Please sign in to comment.