{"id":25690687,"url":"https://github.com/csath/stall-information-management-system","last_synced_at":"2025-09-11T21:21:05.106Z","repository":{"id":90863650,"uuid":"112906556","full_name":"csath/Stall-Information-Management-System","owner":"csath","description":"A php symphony web project based profile management system","archived":false,"fork":false,"pushed_at":"2017-12-03T06:55:13.000Z","size":7791,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-02-24T22:51:20.660Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"PHP","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/csath.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2017-12-03T06:45:09.000Z","updated_at":"2017-12-03T06:55:16.000Z","dependencies_parsed_at":null,"dependency_job_id":"7ebfb88a-0345-46e5-8673-04c2a6d6bd63","html_url":"https://github.com/csath/Stall-Information-Management-System","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/csath/Stall-Information-Management-System","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/csath%2FStall-Information-Management-System","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/csath%2FStall-Information-Management-System/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/csath%2FStall-Information-Management-System/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/csath%2FStall-Information-Management-System/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/csath","download_url":"https://codeload.github.com/csath/Stall-Information-Management-System/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/csath%2FStall-Information-Management-System/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":274707026,"owners_count":25334863,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-09-11T02:00:13.660Z","response_time":74,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2025-02-24T22:50:49.897Z","updated_at":"2025-09-11T21:21:05.098Z","avatar_url":"https://github.com/csath.png","language":"PHP","funding_links":[],"categories":[],"sub_categories":[],"readme":"Symfony Standard Edition\n========================\n\nWelcome to the Symfony Standard Edition - a fully-functional Symfony2\napplication that you can use as the skeleton for your new applications.\n\nThis document contains information on how to download, install, and start\nusing Symfony. For a more detailed explanation, see the [Installation][1]\nchapter of the Symfony Documentation.\n\n1) Installing the Standard Edition\n----------------------------------\n\nWhen it comes to installing the Symfony Standard Edition, you have the\nfollowing options.\n\n### Use Composer (*recommended*)\n\nAs Symfony uses [Composer][2] to manage its dependencies, the recommended way\nto create a new project is to use it.\n\nIf you don't have Composer yet, download it following the instructions on\nhttp://getcomposer.org/ or just run the following command:\n\n    curl -s http://getcomposer.org/installer | php\n\nThen, use the `create-project` command to generate a new Symfony application:\n\n    php composer.phar create-project symfony/framework-standard-edition path/to/install\n\nComposer will install Symfony and all its dependencies under the\n`path/to/install` directory.\n\n### Download an Archive File\n\nTo quickly test Symfony, you can also download an [archive][3] of the Standard\nEdition and unpack it somewhere under your web server root directory.\n\nIf you downloaded an archive \"without vendors\", you also need to install all\nthe necessary dependencies. Download composer (see above) and run the\nfollowing command:\n\n    php composer.phar install\n\n2) Checking your System Configuration\n-------------------------------------\n\nBefore starting coding, make sure that your local system is properly\nconfigured for Symfony.\n\nExecute the `check.php` script from the command line:\n\n    php app/check.php\n\nThe script returns a status code of `0` if all mandatory requirements are met,\n`1` otherwise.\n\nAccess the `config.php` script from a browser:\n\n    http://localhost/path-to-project/web/config.php\n\nIf you get any warnings or recommendations, fix them before moving on.\n\n3) Browsing the Demo Application\n--------------------------------\n\nCongratulations! You're now ready to use Symfony.\n\nFrom the `config.php` page, click the \"Bypass configuration and go to the\nWelcome page\" link to load up your first Symfony page.\n\nYou can also use a web-based configurator by clicking on the \"Configure your\nSymfony Application online\" link of the `config.php` page.\n\nTo see a real-live Symfony page in action, access the following page:\n\n    web/app_dev.php/demo/hello/Fabien\n\n4) Getting started with Symfony\n-------------------------------\n\nThis distribution is meant to be the starting point for your Symfony\napplications, but it also contains some sample code that you can learn from\nand play with.\n\nA great way to start learning Symfony is via the [Quick Tour][4], which will\ntake you through all the basic features of Symfony2.\n\nOnce you're feeling good, you can move onto reading the official\n[Symfony2 book][5].\n\nA default bundle, `AcmeDemoBundle`, shows you Symfony2 in action. After\nplaying with it, you can remove it by following these steps:\n\n  * delete the `src/Acme` directory;\n\n  * remove the routing entry referencing AcmeDemoBundle in `app/config/routing_dev.yml`;\n\n  * remove the AcmeDemoBundle from the registered bundles in `app/AppKernel.php`;\n\n  * remove the `web/bundles/acmedemo` directory;\n\n  * empty the `security.yml` file or tweak the security configuration to fit\n    your needs.\n\nWhat's inside?\n---------------\n\nThe Symfony Standard Edition is configured with the following defaults:\n\n  * Twig is the only configured template engine;\n\n  * Doctrine ORM/DBAL is configured;\n\n  * Swiftmailer is configured;\n\n  * Annotations for everything are enabled.\n\nIt comes pre-configured with the following bundles:\n\n  * **FrameworkBundle** - The core Symfony framework bundle\n\n  * [**SensioFrameworkExtraBundle**][6] - Adds several enhancements, including\n    template and routing annotation capability\n\n  * [**DoctrineBundle**][7] - Adds support for the Doctrine ORM\n\n  * [**TwigBundle**][8] - Adds support for the Twig templating engine\n\n  * [**SecurityBundle**][9] - Adds security by integrating Symfony's security\n    component\n\n  * [**SwiftmailerBundle**][10] - Adds support for Swiftmailer, a library for\n    sending emails\n\n  * [**MonologBundle**][11] - Adds support for Monolog, a logging library\n\n  * [**AsseticBundle**][12] - Adds support for Assetic, an asset processing\n    library\n\n  * **WebProfilerBundle** (in dev/test env) - Adds profiling functionality and\n    the web debug toolbar\n\n  * **SensioDistributionBundle** (in dev/test env) - Adds functionality for\n    configuring and working with Symfony distributions\n\n  * [**SensioGeneratorBundle**][13] (in dev/test env) - Adds code generation\n    capabilities\n\n  * **AcmeDemoBundle** (in dev/test env) - A demo bundle with some example\n    code\n\nAll libraries and bundles included in the Symfony Standard Edition are\nreleased under the MIT or BSD license.\n\nEnjoy!\n\n[1]:  http://symfony.com/doc/2.4/book/installation.html\n[2]:  http://getcomposer.org/\n[3]:  http://symfony.com/download\n[4]:  http://symfony.com/doc/2.4/quick_tour/the_big_picture.html\n[5]:  http://symfony.com/doc/2.4/index.html\n[6]:  http://symfony.com/doc/2.4/bundles/SensioFrameworkExtraBundle/index.html\n[7]:  http://symfony.com/doc/2.4/book/doctrine.html\n[8]:  http://symfony.com/doc/2.4/book/templating.html\n[9]:  http://symfony.com/doc/2.4/book/security.html\n[10]: http://symfony.com/doc/2.4/cookbook/email.html\n[11]: http://symfony.com/doc/2.4/cookbook/logging/monolog.html\n[12]: http://symfony.com/doc/2.4/cookbook/assetic/asset_management.html\n[13]: http://symfony.com/doc/2.4/bundles/SensioGeneratorBundle/index.html\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcsath%2Fstall-information-management-system","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fcsath%2Fstall-information-management-system","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcsath%2Fstall-information-management-system/lists"}