├── .gitignore ├── README.md ├── gulpfile.js ├── package.json ├── public └── index.php └── utils └── phpKillIfExists.js /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | *.log 3 | .DS_Store 4 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renatorib/cartola-api/HEAD/README.md -------------------------------------------------------------------------------- /gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renatorib/cartola-api/HEAD/gulpfile.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renatorib/cartola-api/HEAD/package.json -------------------------------------------------------------------------------- /public/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renatorib/cartola-api/HEAD/public/index.php -------------------------------------------------------------------------------- /utils/phpKillIfExists.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renatorib/cartola-api/HEAD/utils/phpKillIfExists.js --------------------------------------------------------------------------------