Hacker News new | ask | show | jobs
by array_key_first 273 days ago
Unironically PHP arrays are the perfect config format. Nestable like JSON, terser, no parsing traps, typed.

I mean, this is just great:

```php

[

  'driver' => 'mysql'

  'options' => [...],
];

```

Obviously not a lot of support though... Its PHP.