20 lines
383 B
PHP
20 lines
383 B
PHP
<?php
|
|
|
|
/*
|
|
* This file is part of Resume.PHP.
|
|
*
|
|
* (copyleft) R. Eric Wheeler <sikofitt@gmail.com>
|
|
*
|
|
* For the full copyright and license information, please view the LICENSE
|
|
* file that was distributed with this source code.
|
|
*/
|
|
|
|
require_once 'vendor/autoload.php';
|
|
|
|
|
|
$decoder = new Webmozart\Json\JsonDecoder();
|
|
|
|
$json = $decoder->decodeFile('data/resume.json');
|
|
|
|
dump($json);
|