Initial commit
parents
Showing
README.md
0 → 100644
bin/swoole
0 → 100644
composer.json
0 → 100644
| { | |||
| "name": "FLT/symfony-swoole", | |||
| "description": "Event-driven engine for running Symfony PHP with Swoole extension.", | |||
| "type": "library", | |||
| "require": { | |||
| "symfony/console": "^4.0", | |||
| "php": ">=7.1", | |||
| "ext-swoole": "*" | |||
| }, | |||
| "require-dev": { | |||
| "phpunit/phpunit": "^6.1" | |||
| }, | |||
| "authors": [ | |||
| { | |||
| "name": "Mattia Bernasconi", | |||
| "homepage": "https://www.mattiabernasconi.it" | |||
| } | |||
| ], | |||
| "autoload": { | |||
| "psr-4": {"FLT\\Swoole\\": "src/"} | |||
| }, | |||
| "autoload-dev": { | |||
| "psr-4": { "FLT\\Swoole\\Tests\\": "tests/" } | |||
| }, | |||
| "bin": ["bin/swoole"] | |||
| } |
src/Accessor.php
0 → 100644
Please register or sign in to comment