markrogoyski / ipv4-subnet-calculator-php

Network calculator for subnet mask and other classless (CIDR) network information.
MIT License
168 stars 42 forks source link

php 5.3 support #10

Closed nephilem90 closed 5 years ago

nephilem90 commented 6 years ago

Hello,

in your composer you show support to PHP 5.3 but in this version it isn't possible to define arrays like this

$array = []

markrogoyski commented 6 years ago

Thank you for bringing this to my attention. You are right. Short array syntax was introduced in PHP 5.4, so that should be the minimum version supported. It should not be a problem to up the minimum supported version, as PHP 5.3 has officially been unsupported since 2014.

I will update this in the next release.

markrogoyski commented 5 years ago

v3.0.0 now indicates that PHP 5.5 is the lowest minimum supported version. Thanks.