mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-21 00:25:50 +00:00
c798386ac0
Add support for method calls on primitive types in PHP This extension implements the ability to register a class that handles the method calls to a certain primitive type (string, array, ...). As such it allows implementing APIs like $str->length(). The main purpose of this repo is to provide a proof of concept implementation that can be used to design the new APIs. The switch to object syntax for operations on primitive types is a unique opportunity for PHP to redesign many of its inconsistent core APIs. This repo provides the means to quickly prototype and test new APIs as userland code. Once the APIs are figured out it will be proposed for inclusion into PHP. Note: The ability to register type handlers from userland is just for prototyping. WWW: https://github.com/nikic/scalar_objects PR: ports/186221 Submitted by: Gasol Wu <gasol.wu@gmail.com>
26 lines
445 B
Makefile
26 lines
445 B
Makefile
# Created by: Gasol Wu <gasol.wu@gmail.com>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= scalar_objects
|
|
PORTVERSION= 0.0.20140124
|
|
CATEGORIES= devel
|
|
PKGNAMEPREFIX= php-
|
|
|
|
MAINTAINER= gasol.wu@gmail.com
|
|
COMMENT= Support method calls on primitive types in PHP
|
|
|
|
LICENSE= PHP301
|
|
|
|
USE_GITHUB= yes
|
|
GH_ACCOUNT= nikic
|
|
GH_PROJECT= scalar_objects
|
|
GH_TAGNAME= ${GH_COMMIT}
|
|
GH_COMMIT= baf4985
|
|
|
|
USE_PHP= yes
|
|
USE_PHPEXT= yes
|
|
USE_PHPIZE= yes
|
|
USE_PHPBUILD= yes
|
|
|
|
.include <bsd.port.mk>
|