--- /dev/null
+<?php
+/* Autoloader for dev-php/sebastian-version */
+
+if (!class_exists('Fedora\\Autoloader\\Autoload', false)) {
+ require_once '/usr/share/php/Fedora/Autoloader/autoload.php';
+}
+
+\Fedora\Autoloader\Autoload::addClassMap(
+ [
+ 'sebastianbergmann\type\callabletype' => '/CallableType.php',
+ 'sebastianbergmann\type\genericobjecttype' => '/GenericObjectType.php',
+ 'sebastianbergmann\type\iterabletype' => '/IterableType.php',
+ 'sebastianbergmann\type\nulltype' => '/NullType.php',
+ 'sebastianbergmann\type\objecttype' => '/ObjectType.php',
+ 'sebastianbergmann\type\simpletype' => '/SimpleType.php',
+ 'sebastianbergmann\type\type' => '/Type.php',
+ 'sebastianbergmann\type\typename' => '/TypeName.php',
+ 'sebastianbergmann\type\unknowntype' => '/UnknownType.php',
+ 'sebastianbergmann\type\voidtype' => '/VoidType.php',
+ 'sebastianbergmann\type\exception' => '/exception/Exception.php',
+ 'sebastianbergmann\type\runtimeexception' => '/exception/RuntimeException.php',
+ ],
+ __DIR__
+);
--- /dev/null
+<?xml version='1.0' encoding='UTF-8'?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+ <maintainer type="project">
+ <email>php-bugs@gentoo.org</email>
+ <name>PHP</name>
+ </maintainer>
+ <upstream>
+ <remote-id type="github">sebastianbergmann/type</remote-id>
+ </upstream>
+</pkgmetadata>
--- /dev/null
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+MY_PN="type"
+
+DESCRIPTION="Collection of value objects that represent the types of the PHP type system"
+HOMEPAGE="http://phpunit.de"
+SRC_URI="https://github.com/sebastianbergmann/${MY_PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86"
+IUSE=""
+
+S="${WORKDIR}/${MY_PN}-${PV}"
+
+RDEPEND="dev-php/fedora-autoloader
+ >=dev-lang/php-7.2:*"
+
+src_install() {
+ insinto /usr/share/php/SebastianBergmann
+ doins -r src/*
+ insinto /usr/share/php/SebastianBergmann/Type
+ doins "${FILESDIR}/autoload.php"
+}