├── .env ├── .github ├── FUNDING.yml └── workflows │ └── ci.yml ├── .gitignore ├── LICENSE ├── README.md ├── bin └── psx ├── cache └── empty ├── composer.json ├── configuration.php ├── container.php ├── log └── app.log ├── phpunit.xml ├── psalm.xml ├── public └── index.php ├── resources ├── container.php └── typeschema.json ├── src ├── Controller │ ├── Population.php │ └── Welcome.php ├── Migrations │ └── Version20230326195309.php ├── Model │ ├── Collection.php │ ├── Message.php │ ├── Population.php │ ├── PopulationCollection.php │ └── Welcome.php ├── Service │ └── Population.php └── Table │ ├── Generated │ ├── PopulationRow.php │ └── PopulationTable.php │ └── Population.php └── tests ├── Controller ├── PopulationTest.php ├── WelcomeTest.php └── resources │ ├── collection.json │ └── entity.json ├── bootstrap.php └── fixture.php /.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx/HEAD/.env -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /cache/ 2 | /log/ 3 | /vendor/ -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx/HEAD/README.md -------------------------------------------------------------------------------- /bin/psx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx/HEAD/bin/psx -------------------------------------------------------------------------------- /cache/empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx/HEAD/composer.json -------------------------------------------------------------------------------- /configuration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx/HEAD/configuration.php -------------------------------------------------------------------------------- /container.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx/HEAD/container.php -------------------------------------------------------------------------------- /log/app.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx/HEAD/phpunit.xml -------------------------------------------------------------------------------- /psalm.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx/HEAD/psalm.xml -------------------------------------------------------------------------------- /public/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx/HEAD/public/index.php -------------------------------------------------------------------------------- /resources/container.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx/HEAD/resources/container.php -------------------------------------------------------------------------------- /resources/typeschema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx/HEAD/resources/typeschema.json -------------------------------------------------------------------------------- /src/Controller/Population.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx/HEAD/src/Controller/Population.php -------------------------------------------------------------------------------- /src/Controller/Welcome.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx/HEAD/src/Controller/Welcome.php -------------------------------------------------------------------------------- /src/Migrations/Version20230326195309.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx/HEAD/src/Migrations/Version20230326195309.php -------------------------------------------------------------------------------- /src/Model/Collection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx/HEAD/src/Model/Collection.php -------------------------------------------------------------------------------- /src/Model/Message.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx/HEAD/src/Model/Message.php -------------------------------------------------------------------------------- /src/Model/Population.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx/HEAD/src/Model/Population.php -------------------------------------------------------------------------------- /src/Model/PopulationCollection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx/HEAD/src/Model/PopulationCollection.php -------------------------------------------------------------------------------- /src/Model/Welcome.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx/HEAD/src/Model/Welcome.php -------------------------------------------------------------------------------- /src/Service/Population.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx/HEAD/src/Service/Population.php -------------------------------------------------------------------------------- /src/Table/Generated/PopulationRow.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx/HEAD/src/Table/Generated/PopulationRow.php -------------------------------------------------------------------------------- /src/Table/Generated/PopulationTable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx/HEAD/src/Table/Generated/PopulationTable.php -------------------------------------------------------------------------------- /src/Table/Population.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx/HEAD/src/Table/Population.php -------------------------------------------------------------------------------- /tests/Controller/PopulationTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx/HEAD/tests/Controller/PopulationTest.php -------------------------------------------------------------------------------- /tests/Controller/WelcomeTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx/HEAD/tests/Controller/WelcomeTest.php -------------------------------------------------------------------------------- /tests/Controller/resources/collection.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx/HEAD/tests/Controller/resources/collection.json -------------------------------------------------------------------------------- /tests/Controller/resources/entity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx/HEAD/tests/Controller/resources/entity.json -------------------------------------------------------------------------------- /tests/bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx/HEAD/tests/bootstrap.php -------------------------------------------------------------------------------- /tests/fixture.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx/HEAD/tests/fixture.php --------------------------------------------------------------------------------