jansenfelipe / sdaps-php
Integration Sdaps for PHP - http://sdaps.org/
Installs: 90
Dependents: 0
Suggesters: 0
Security: 0
Stars: 4
Watchers: 2
Forks: 2
Open Issues: 1
pkg:composer/jansenfelipe/sdaps-php
Requires
- php: >=5.3.0
This package is auto-updated.
Last update: 2025-09-29 01:26:17 UTC
README
Integration Sdaps for PHP
Quick start
Install SDAPS
See http://sdaps.org/
In the require key of composer.json file add the following
"jansenfelipe/sdaps-php": "1.0.*@dev"
Execute
$ composer update
Add autoload.php
require_once 'vendor/autoload.php';
Call
<?php use JansenFelipe\SdapsPHP\SdapsPHP; $pathProject = '/path/you/want/to/create/the/project/sdaps'; $pathLaTeX = '/path/format.tex'; if(SdapsPHP::createProject($pathProject, $pathLaTeX)) { SdapsPHP::add($pathProject, '/images/image01.tiff'); SdapsPHP::recognize($pathProject); $pathCSV = SdapsPHP::recognize($pathProject); //handle .csv }