A PHP directory structure for my libraries.
PHP Sceleto is a directory structure template designed for creating PHP libraries. It provides a well-organized skeleton that I use for my PHP library projects and have decided to share with the community. This template is intended to streamline the development of PHP libraries, saving you time on initial setup and configuration.
- Organized directory structure for your PHP library:
- Includes common project files like
.editorconfig
,.gitignore
, and.htaccess
. - Comes with a sample
composer.json
for easy Composer integration. - Includes a sample PHPUnit configuration file
phpunit.xml.dist
. - License and contributing guidelines for open-source projects.
your-php-library/
│
├──┬ src/
│ │ ├─── [SomeClass].php
│ │ ├─── [AnotherClass].php
│ │ ├─── ...
│ │
│ └ tests/
│ ├─── [SomeClass]Test.php
│ ├─── [AnotherClass]Test.php
│ ├─── ...
│
├─── logs/
├─── docs/
├─── vendor/
├─── .editorconfig
├─── .gitignore
├─── .htaccess
├─── composer.json
├─── composer.lock
├─── phpunit.xml.dist
├─── LICENSE
├─── CONTRIBUTING.md
└─── README.md
Files and folders overview.
File/Folder | Description |
---|---|
src/ | Source code of the application |
src/SomeClass.php | Example PHP class file (SomeClass) |
src/AnotherClass.php | Example PHP class file (AnotherClass) |
src/tests/ | Tests directory |
tests/SomeClassTest.php | PHPUnit test case for SomeClass (Example class) |
tests/AnotherClassTest.php | PHPUnit test case for AnotherClass (Example class) |
logs/ | Log files (e.g., code coverage report) |
docs/ | Documentation files (e.g., PHPDoc) |
vendor/ | Composer vendor directory contains your dependencies |
.editorconfig | IDE coding style settings |
.gitignore | Files and directories that Git should ignore |
.htaccess | Hypertext access file for Apache configuration |
composer.json | Composer dependencies |
composer.lock | Composer lock file |
phpunit.xml.dist | PHPUnit configuration file |
LICENSE | License document |
CONTRIBUTING.md | Contributing guidelines |
README.md | This document |
Follow these steps to use PHP Sceleto as a starting point for your PHP library:
composer create-project SandroMiguel/php-sceleto your-php-library
Replace your-php-library
with your desired name
Now, you have a clean slate to begin developing your PHP library independently. You can add your own code, configuration, and documentation within the provided directory structure.
If you wish to further enhance your project and follow best practices, consider continuing your project setup with Some Awesome Project. Some Awesome Project provides a set of guidelines and additional configurations that can make your project development even more efficient.
You can use Composer commands to streamline various development tasks. Here are the available commands and how to run them:
To check for outdated Composer dependencies that are defined directly in your project, run:
composer outdated:direct
To run PHP CodeSniffer on the source code in the src/php directory, use the following command:
composer phpcs
For running PHP CodeSniffer on a specific file, use the following command, replacing [file]
with the path to your target file:
composer phpcs:file [file]
To analyze code quality and architecture with PHP Insights, run:
composer phpinsights
Generate a PHP Metrics report and display the Node.js version with:
composer phpmetrics
For PHPStan analysis with level 7 on the source code in the src/php
directory, use:
composer phpstan
To run Psalm static analysis, simply use:
composer psalm
To tail the application log located at ./storage/log/app.log
, use:
composer logs
For running PHPUnit tests, execute:
composer test
To run PHPUnit tests with filtering, execute:
composer test:filter methodName ClassName path/to/file.php
To run PHPUnit tests and generate a coverage report in the log/report
directory, use:
composer test:coverage
- EditorConfig: IDE coding style settings.
- PHPUnit: Testing framework for PHP.
- PHP CodeSniffer: PHP coding standards checker and fixer.
- PHP Insights: Code quality and architecture analysis tool.
- PHP Metrics: PHP metrics generator.
- PHPStan: PHP static analysis tool.
- Psalm: Static analysis tool for PHP.
- Composer: Dependency management for PHP.
- Logo skeleton - made by Freepik from www.flaticon.com is licensed by CC 3.0 BY
Want to contribute? All contributions are welcome. Read the contributing guide.
If you have questions tweet me at @sandro_m_m or open an issue.
See CHANGELOG.md
This project is licensed under the MIT License - see the LICENSE file for details
**~ sharing is caring ~**