├── .editorconfig ├── .gitattributes ├── .gitignore ├── .styleci.yml ├── CHANGELOG.md ├── CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE.md ├── README.md ├── composer.json ├── composer.lock └── src ├── Model ├── Activity.php ├── Actor.php ├── Collection.php ├── IntransitiveActivity.php ├── Link.php └── Object.php ├── Server.php ├── ServerFactory.php └── Transformer └── Object.php /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dansup/php-activitystreams/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dansup/php-activitystreams/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dansup/php-activitystreams/HEAD/.gitignore -------------------------------------------------------------------------------- /.styleci.yml: -------------------------------------------------------------------------------- 1 | preset: psr2 2 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dansup/php-activitystreams/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dansup/php-activitystreams/HEAD/CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dansup/php-activitystreams/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dansup/php-activitystreams/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dansup/php-activitystreams/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dansup/php-activitystreams/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dansup/php-activitystreams/HEAD/composer.lock -------------------------------------------------------------------------------- /src/Model/Activity.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dansup/php-activitystreams/HEAD/src/Model/Activity.php -------------------------------------------------------------------------------- /src/Model/Actor.php: -------------------------------------------------------------------------------- 1 |