├── .gitignore ├── .travis.yml ├── README.md ├── composer.json ├── projects.yml ├── projects ├── aimeos.png ├── aimeos.yml ├── akeneo.png ├── akeneo.yml ├── apiplatform.png ├── apiplatform.yml ├── assetic.png ├── assetic.yml ├── automate.png ├── automate.yml ├── behat.png ├── behat.yml ├── bolt.png ├── bolt.yml ├── botman.png ├── botman.yml ├── bowerphp.png ├── bowerphp.yml ├── bref.png ├── bref.yml ├── cachet.png ├── cachet.yml ├── cakephp.png ├── cakephp.yml ├── carbon.png ├── carbon.yml ├── carew.png ├── carew.yml ├── civicrm.png ├── civicrm.yml ├── codeception.png ├── codeception.yml ├── commonmark.png ├── commonmark.yml ├── composer.png ├── composer.yml ├── concretecms.png ├── concretecms.yml ├── contao.png ├── contao.yml ├── craftcms.png ├── craftcms.yml ├── crunz.png ├── crunz.yml ├── default.png ├── deployer.png ├── deployer.yml ├── deptrac.png ├── deptrac.yml ├── doctrine.png ├── doctrine.yml ├── drupal.png ├── drupal.yml ├── drupalconsole.png ├── drupalconsole.yml ├── drush.png ├── drush.yml ├── eccube.png ├── eccube.yml ├── facebook-ads.png ├── facebook-ads.yml ├── facebook-instant-articles.png ├── facebook-instant-articles.yml ├── flarum.png ├── flarum.yml ├── flow.png ├── flow.yml ├── forkcms.png ├── forkcms.yml ├── gally.png ├── gally.yml ├── google-api.png ├── google-api.yml ├── google-cloud-platform.png ├── google-cloud-platform.yml ├── goutte.png ├── goutte.yml ├── grav.png ├── grav.yml ├── ibexadxp.png ├── ibexadxp.yml ├── infection.png ├── infection.yml ├── initcms.png ├── initcms.yml ├── joomla.png ├── joomla.yml ├── kimai.png ├── kimai.yml ├── kunstmaancms.png ├── kunstmaancms.yml ├── laravel.png ├── laravel.yml ├── lumen.png ├── lumen.yml ├── magento.png ├── magento.yml ├── matomo.png ├── matomo.yml ├── mautic.png ├── mautic.yml ├── orocommerce.png ├── orocommerce.yml ├── orocrm.png ├── orocrm.yml ├── oroplatform.png ├── oroplatform.yml ├── owncloud.png ├── owncloud.yml ├── pagekit.png ├── pagekit.yml ├── pdepend.png ├── pdepend.yml ├── phan.png ├── phan.yml ├── php-censor.png ├── php-censor.yml ├── php-cs-fixer.png ├── php-cs-fixer.yml ├── phpbb.png ├── phpbb.yml ├── phpdocumentor.png ├── phpdocumentor.yml ├── phpinsights.png ├── phpinsights.yml ├── phpmailer.png ├── phpmailer.yml ├── phpmyadmin.png ├── phpmyadmin.yml ├── phpmyfaq.png ├── phpmyfaq.yml ├── phpredexpert.png ├── phpredexpert.yml ├── phpspec.png ├── phpspec.yml ├── phpstan.png ├── phpstan.yml ├── pico.png ├── pico.yml ├── pimcore.png ├── pimcore.yml ├── prestashop.png ├── prestashop.yml ├── propel.png ├── propel.yml ├── psysh.png ├── psysh.yml ├── qloapps.png ├── qloapps.yml ├── quality-analyzer.png ├── quality-analyzer.yml ├── ratchet.png ├── ratchet.yml ├── roadiz.png ├── roadiz.yml ├── robotask.png ├── robotask.yml ├── rocketeer.png ├── rocketeer.yml ├── sculpin.png ├── sculpin.yml ├── shopsysframework.png ├── shopsysframework.yml ├── shopware.png ├── shopware.yml ├── silverstripe-cms.png ├── silverstripe-cms.yml ├── solidinvoice.png ├── solidinvoice.yml ├── sonataproject.png ├── sonataproject.yml ├── spress.png ├── spress.yml ├── spryker.png ├── spryker.yml ├── sulu.png ├── sulu.yml ├── sylius.png ├── sylius.yml ├── symfonyfs.png ├── symfonyfs.yml ├── thelia.png ├── thelia.yml ├── typo3.png ├── typo3.yml ├── uvdesk.png ├── uvdesk.yml ├── wallabag.png ├── wallabag.yml ├── wikimedia.png ├── wikimedia.yml ├── wpcli.png ├── wpcli.yml ├── yii.png ├── yii.yml ├── zendexpressive.png ├── zendexpressive.yml ├── zikula.png ├── zikula.yml ├── zippy.png └── zippy.yml └── validator.php /.gitignore: -------------------------------------------------------------------------------- 1 | /composer.lock 2 | /vendor/ 3 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- 1 | language: php 2 | 3 | php: ["7.2"] 4 | 5 | sudo: false 6 | 7 | cache: 8 | - $HOME/.composer/cache/files 9 | 10 | install: 11 | - travis_retry composer install 12 | 13 | script: 14 | - php validator.php 15 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | The Symfony Website Content 2 | =========================== 3 | 4 | This repository stores the information about the [Symfony Projects][1] displayed 5 | on symfony.com. 6 | 7 | The contents of this repository and all the contributed contents are licensed 8 | under a [Creative Commons Attribution-Share Alike 3.0 Unported License](https://creativecommons.org/licenses/by-sa/3.0/). 9 | 10 | How to Add a Project to the List of Projects Made with Symfony 11 | -------------------------------------------------------------- 12 | 13 | Follow these instructions to show your Symfony-based project on [symfony.com/projects][1]: 14 | 15 | 1. Add a YAML file with the basic project information in `projects/xxx.yml` 16 | where `xxx` is the slug of your project (e.g. `projects/acme.yml`). Use any 17 | of the existing YAML files as the reference of your own file. 18 | 2. Add a square PNG image with the logo of your project in `projects/xxx.png` 19 | where `xxx` is the slug of your project (e.g. `projects/acme.png`). It's 20 | recommended to create a 160px x 160px image. 21 | 3. Add your project to the `projects.yml` file at the root of this repository. 22 | Append your project at the end of the list and we'll change its position if 23 | needed. 24 | 25 | [1]: https://symfony.com/projects 26 | -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "symfony/marketing", 3 | "description": "Contains information about the components and projects displayed on symfony.com", 4 | "require-dev": { 5 | "symfony/console": "^6.0", 6 | "symfony/yaml": "^6.0" 7 | }, 8 | "license": "Unlicense", 9 | "authors": [ 10 | { 11 | "name": "Fabien Potencier", 12 | "email": "fabien.potencier@gmail.com" 13 | } 14 | ] 15 | } 16 | -------------------------------------------------------------------------------- /projects.yml: -------------------------------------------------------------------------------- 1 | # the order of projects in each category is important because the first ones 2 | # are highlighted on symfony.com 3 | cms: 4 | - drupal 5 | - joomla 6 | - sulu 7 | - grav 8 | - ibexadxp 9 | - typo3 10 | - bolt 11 | - pagekit 12 | - forkcms 13 | - craftcms 14 | - kunstmaancms 15 | - zikula 16 | - concretecms 17 | - roadiz 18 | - contao 19 | - initcms 20 | - pico 21 | - silverstripe-cms 22 | e-commerce: 23 | - magento 24 | - prestashop 25 | - sylius 26 | - shopware 27 | - eccube 28 | - aimeos 29 | - thelia 30 | - spryker 31 | - orocommerce 32 | - shopsysframework 33 | - uvdesk 34 | - QloApps 35 | framework: 36 | - laravel 37 | - symfonyfs 38 | - yii 39 | - cakephp 40 | - bref 41 | - zendexpressive 42 | - lumen 43 | - flow 44 | pim-crm: 45 | - orocrm 46 | - akeneo 47 | - pimcore 48 | - civicrm 49 | code-quality: 50 | - php-cs-fixer 51 | - phan 52 | - phpstan 53 | - phpinsights 54 | - behat 55 | - phpspec 56 | - codeception 57 | - deptrac 58 | - quality-analyzer 59 | - pdepend 60 | - php-censor 61 | - infection 62 | sdk: 63 | - google-api 64 | - facebook-ads 65 | - google-cloud-platform 66 | - facebook-instant-articles 67 | # the order in the default category is irrelevant because these projects are 68 | # displayed in alphabetical order 69 | default: 70 | - apiplatform 71 | - assetic 72 | - botman 73 | - bowerphp 74 | - cachet 75 | - carew 76 | - composer 77 | - commonmark 78 | - deployer 79 | - doctrine 80 | - drupalconsole 81 | - drush 82 | - flarum 83 | - goutte 84 | - matomo 85 | - mautic 86 | - oroplatform 87 | - owncloud 88 | - phpbb 89 | - phpdocumentor 90 | - phpmailer 91 | - phpmyadmin 92 | - phpmyfaq 93 | - phpredexpert 94 | - propel 95 | - ratchet 96 | - robotask 97 | - rocketeer 98 | - sculpin 99 | - solidinvoice 100 | - sonataproject 101 | - spress 102 | - wallabag 103 | - wpcli 104 | - psysh 105 | - automate 106 | - wikimedia 107 | - carbon 108 | - crunz 109 | - zippy 110 | - kimai 111 | - gally 112 | -------------------------------------------------------------------------------- /projects/aimeos.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/marketing/bf719064e9ba7bdc297e3fbccef7691c21057af6/projects/aimeos.png -------------------------------------------------------------------------------- /projects/aimeos.yml: -------------------------------------------------------------------------------- 1 | name: Aimeos e-commerce components 2 | url: https://aimeos.org/Symfony 3 | dependencies: 4 | - github@aimeos/aimeos-symfony 5 | - github@aimeos/ai-fosuser 6 | - github@aimeos/ai-monolog 7 | - github@aimeos/ai-swiftmailer 8 | - github@aimeos/ai-symfony 9 | - github@aimeos/ai-twig 10 | description: | 11 | We enable you to do #gigacommerce! From one to 1 billion articles 12 | and from simple to complex products in your online shop, Aimeos is 13 | the first choice if you have non-standard requirements. With Aimeos, 14 | you get a professional, full-featured, well tested and highly 15 | customizable e-commerce bundle for Symfony split into several 16 | independent components like HTML frontend, JSON REST API and 17 | administration interface. For a quick start, a working demo shop 18 | including most of the features is set up during first installation. 19 | -------------------------------------------------------------------------------- /projects/akeneo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/marketing/bf719064e9ba7bdc297e3fbccef7691c21057af6/projects/akeneo.png -------------------------------------------------------------------------------- /projects/akeneo.yml: -------------------------------------------------------------------------------- 1 | name: Akeneo PIM 2 | url: https://akeneo.com 3 | dependencies: 4 | - github@akeneo/pim-community-dev 5 | - github@akeneo/pim-community-standard 6 | description: | 7 | Akeneo is an open source Product Information Management (PIM) system 8 | designed for retailers looking for efficient answers to their 9 | multichannel needs. 10 | -------------------------------------------------------------------------------- /projects/apiplatform.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/marketing/bf719064e9ba7bdc297e3fbccef7691c21057af6/projects/apiplatform.png -------------------------------------------------------------------------------- /projects/apiplatform.yml: -------------------------------------------------------------------------------- 1 | name: API Platform 2 | url: https://api-platform.com 3 | dependencies: 4 | - github@api-platform/api-platform/api 5 | - github@api-platform/core 6 | description: | 7 | API Platform is an Open Source web framework for API-first projects. 8 | Describe the API's data model or import an existing one from Schema.org 9 | and get instantly a fully featured read/write API with REST operations, 10 | data validation, pagination, sorting, filtering, Swagger documentation, 11 | an authorization system, invalidation-based HTTP cache, nested documents, 12 | content negotiation and support for modern hypermedia formats (JSON-LD, 13 | HAL and Hydra). 14 | Open your preferred editor then customize and override everything you need. 15 | Use the provided JavaScript tools to bootstrap a Single Page Application 16 | or a mobile app using React from the API description. 17 | -------------------------------------------------------------------------------- /projects/assetic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/marketing/bf719064e9ba7bdc297e3fbccef7691c21057af6/projects/assetic.png -------------------------------------------------------------------------------- /projects/assetic.yml: -------------------------------------------------------------------------------- 1 | name: Assetic 2 | url: https://github.com/assetic-php/assetic 3 | dependencies: 4 | - github@assetic-php/assetic 5 | description: | 6 | Assetic is an asset management framework for PHP. It combines two 7 | major ideas: assets and filters. The assets are files such as CSS, 8 | JavaScript and image files. The filters are things that can be applied 9 | to these files before they are served to the browser. This allows a 10 | separation between the asset files stored in the application and the 11 | files actually presented to the user. 12 | -------------------------------------------------------------------------------- /projects/automate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/marketing/bf719064e9ba7bdc297e3fbccef7691c21057af6/projects/automate.png -------------------------------------------------------------------------------- /projects/automate.yml: -------------------------------------------------------------------------------- 1 | name: Automate 2 | url: https://automate-deployer.com/ 3 | dependencies: 4 | - github@automatephp/automate 5 | description: | 6 | Automate allows you to automate your deployments to remote Linux servers simply. 7 | You can use Automate from your workstation or through an integration server like Travis or Gitlab-ci. 8 | -------------------------------------------------------------------------------- /projects/behat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/marketing/bf719064e9ba7bdc297e3fbccef7691c21057af6/projects/behat.png -------------------------------------------------------------------------------- /projects/behat.yml: -------------------------------------------------------------------------------- 1 | name: Behat 2 | url: https://behat.org 3 | dependencies: 4 | - github@Behat/Behat 5 | - github@Behat/Gherkin 6 | - github@Behat/WebApiExtension 7 | - github@Behat/MinkExtension 8 | description: | 9 | Behat is an open source behavior-driven development framework for PHP 10 | 5.3 and 5.4. What is behavior-driven development, you ask? It's the 11 | idea that you start by writing human-readable sentences that describe 12 | a feature of your application and how it should work, and only then 13 | implement this behavior in software. 14 | -------------------------------------------------------------------------------- /projects/bolt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/marketing/bf719064e9ba7bdc297e3fbccef7691c21057af6/projects/bolt.png -------------------------------------------------------------------------------- /projects/bolt.yml: -------------------------------------------------------------------------------- 1 | name: Bolt 2 | url: https://boltcms.io/ 3 | dependencies: 4 | - github@bolt/bolt 5 | description: | 6 | Bolt is a tool for Content Management, which strives to be as simple 7 | and straightforward as possible. It is quick to set up, easy to 8 | configure, uses elegant templates, and above all: It's a joy to use. 9 | Bolt is created using modern open source libraries, and is best suited 10 | to build sites in HTML5 with modern markup. 11 | -------------------------------------------------------------------------------- /projects/botman.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/marketing/bf719064e9ba7bdc297e3fbccef7691c21057af6/projects/botman.png -------------------------------------------------------------------------------- /projects/botman.yml: -------------------------------------------------------------------------------- 1 | name: BotMan 2 | url: https://botman.io 3 | dependencies: 4 | - github@botman/botman 5 | - github@botman/installer 6 | - github@botman/botman.io 7 | description: | 8 | BotMan is a framework agnostic PHP library that is designed to simplify the 9 | task of developing innovative bots for multiple messaging platforms, 10 | including Slack, Telegram, Microsoft Bot Framework, Nexmo, HipChat, Facebook 11 | Messenger, WeChat and many more. 12 | -------------------------------------------------------------------------------- /projects/bowerphp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/marketing/bf719064e9ba7bdc297e3fbccef7691c21057af6/projects/bowerphp.png -------------------------------------------------------------------------------- /projects/bowerphp.yml: -------------------------------------------------------------------------------- 1 | name: bowerphp 2 | url: https://bowerphp.github.io/ 3 | dependencies: 4 | - github@Bee-Lab/bowerphp 5 | description: | 6 | Bowerphp is a PHP port of the Bower package manager. It uses the same 7 | protocol and it provides almost the same set of features for systems 8 | which cannot use Node.js. 9 | -------------------------------------------------------------------------------- /projects/bref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/marketing/bf719064e9ba7bdc297e3fbccef7691c21057af6/projects/bref.png -------------------------------------------------------------------------------- /projects/bref.yml: -------------------------------------------------------------------------------- 1 | name: Bref 2 | url: https://bref.sh/ 3 | dependencies: 4 | - github@brefphp/bref 5 | description: | 6 | Bref is an open source project that brings full support for PHP and its 7 | frameworks to AWS Lambda. Getting started with serverless can be overwhelming. 8 | Bref integrates with the open-source Serverless Framework for configuration 9 | and deployment. We get the best of both world: powerful, yet simple. 10 | -------------------------------------------------------------------------------- /projects/cachet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/marketing/bf719064e9ba7bdc297e3fbccef7691c21057af6/projects/cachet.png -------------------------------------------------------------------------------- /projects/cachet.yml: -------------------------------------------------------------------------------- 1 | name: Cachet 2 | url: https://cachethq.io/ 3 | dependencies: 4 | - github@CachetHQ/Cachet 5 | description: | 6 | Cachet is the open source status page system. Great companies all over the 7 | world are using Cachet to better communicate downtime and system outages to 8 | their customers, teams and shareholders. 9 | -------------------------------------------------------------------------------- /projects/cakephp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/marketing/bf719064e9ba7bdc297e3fbccef7691c21057af6/projects/cakephp.png -------------------------------------------------------------------------------- /projects/cakephp.yml: -------------------------------------------------------------------------------- 1 | name: CakePHP 2 | url: https://cakephp.org 3 | dependencies: 4 | - github@cakephp/phinx 5 | description: | 6 | CakePHP makes building web applications simpler, faster, while requiring 7 | less code. A modern PHP 7 framework offering a flexible database access 8 | layer and a powerful scaffolding system that makes building both small and 9 | complex systems simpler, easier and, of course, tastier. 10 | -------------------------------------------------------------------------------- /projects/carbon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/marketing/bf719064e9ba7bdc297e3fbccef7691c21057af6/projects/carbon.png -------------------------------------------------------------------------------- /projects/carbon.yml: -------------------------------------------------------------------------------- 1 | name: Carbon 2 | url: https://carbon.nesbot.com/ 3 | dependencies: 4 | - github@briannesbitt/Carbon 5 | description: | 6 | Carbon is a simple and fully internationalized PHP API extension for 7 | DateTime and DateTimeImmutable. 8 | -------------------------------------------------------------------------------- /projects/carew.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/marketing/bf719064e9ba7bdc297e3fbccef7691c21057af6/projects/carew.png -------------------------------------------------------------------------------- /projects/carew.yml: -------------------------------------------------------------------------------- 1 | name: Carew 2 | url: https://carew.github.io 3 | dependencies: 4 | - github@carew/carew 5 | description: | 6 | Carew is another static site / blog generator. Write some blog posts or 7 | pages in Markdown, Carew will render them in HTML. It provides auto 8 | syntax highlighting, auto generated navigation and pagination, and one 9 | theme based on Bootstrap. Carew doesn't require to user PHP, Ruby or 10 | Python on the production server and it's Git friendly. 11 | -------------------------------------------------------------------------------- /projects/civicrm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/marketing/bf719064e9ba7bdc297e3fbccef7691c21057af6/projects/civicrm.png -------------------------------------------------------------------------------- /projects/civicrm.yml: -------------------------------------------------------------------------------- 1 | name: CiviCRM 2 | url: https://civicrm.org/ 3 | dependencies: 4 | - github@civicrm/civicrm-core 5 | description: | 6 | CiviCRM is a constituent relationship management system designed to meet 7 | the needs of advocacy, non-profit and non-governmental groups. Build, 8 | engage, and organize your constituents with the CRM used by more than 9 | 10,000 non-profits. 10 | -------------------------------------------------------------------------------- /projects/codeception.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/marketing/bf719064e9ba7bdc297e3fbccef7691c21057af6/projects/codeception.png -------------------------------------------------------------------------------- /projects/codeception.yml: -------------------------------------------------------------------------------- 1 | name: Codeception 2 | url: https://codeception.com/ 3 | dependencies: 4 | - github@Codeception/Codeception 5 | description: | 6 | Codeception is a full-stack testing framework which incorporates 7 | acceptance, functional, and unit testing. It uses a simple PHP DSL to 8 | describe test scenarios and includes over 20 modules to solve common 9 | problems. With Codeception you can get tests executed inside every 10 | popular PHP framework, use PhpBrowser (based on Guzzle), or run 11 | acceptance tests with Selenium WebDriver. 12 | -------------------------------------------------------------------------------- /projects/commonmark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/marketing/bf719064e9ba7bdc297e3fbccef7691c21057af6/projects/commonmark.png -------------------------------------------------------------------------------- /projects/commonmark.yml: -------------------------------------------------------------------------------- 1 | name: CommonMark 2 | url: https://commonmark.thephpleague.com/ 3 | dependencies: 4 | - github@thephpleague/commonmark 5 | description: | 6 | The PHP CommonMark parser is a robust, highly-extensible Markdown parser for 7 | PHP based on the CommonMark and GitHub-Flavored Markdown specifications. 8 | Its highly extensible architecture supports custom syntax and other customizations. 9 | Many popular frameworks and CMSes provide extensions and integrations. 10 | -------------------------------------------------------------------------------- /projects/composer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/marketing/bf719064e9ba7bdc297e3fbccef7691c21057af6/projects/composer.png -------------------------------------------------------------------------------- /projects/composer.yml: -------------------------------------------------------------------------------- 1 | name: Composer 2 | url: https://getcomposer.org 3 | dependencies: 4 | - github@composer/composer 5 | description: | 6 | Composer is a tool for dependency management in PHP. It allows you to 7 | declare the dependent libraries your project needs and it will install 8 | them in your project for you. 9 | -------------------------------------------------------------------------------- /projects/concretecms.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/marketing/bf719064e9ba7bdc297e3fbccef7691c21057af6/projects/concretecms.png -------------------------------------------------------------------------------- /projects/concretecms.yml: -------------------------------------------------------------------------------- 1 | name: Concrete CMS 2 | url: https://www.concretecms.org/ 3 | dependencies: 4 | - github@concretecms/concretecms-core 5 | description: | 6 | Concrete CMS is an open source CMS designed to revolutionize user experience. 7 | Go to any page in your site, and an editing toolbar gives you all the 8 | controls you need to update your website. No intimidating manuals, no 9 | complicated administration interfaces - just point and click. 10 | -------------------------------------------------------------------------------- /projects/contao.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/marketing/bf719064e9ba7bdc297e3fbccef7691c21057af6/projects/contao.png -------------------------------------------------------------------------------- /projects/contao.yml: -------------------------------------------------------------------------------- 1 | name: Contao 2 | url: https://contao.org 3 | dependencies: 4 | - github@contao/managed-edition 5 | - github@contao/core-bundle 6 | description: | 7 | Contao is an accessible open source content management system, 8 | first published in 2006. Starting with version 4 (released in spring 2015), 9 | Contao is based on the Symfony full stack framework and steadily migrates 10 | the existing libraries to Symfony components. 11 | -------------------------------------------------------------------------------- /projects/craftcms.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/marketing/bf719064e9ba7bdc297e3fbccef7691c21057af6/projects/craftcms.png -------------------------------------------------------------------------------- /projects/craftcms.yml: -------------------------------------------------------------------------------- 1 | name: Craft CMS 2 | url: https://craftcms.com/ 3 | dependencies: 4 | - github@craftcms/cms 5 | description: | 6 | Craft CMS is a flexible, extensible content management system for building 7 | bespoke digital experiences. It features an intuitive, accessible control 8 | panel; powerful content modeling that doesn’t make assumptions about how 9 | your project should be structured and an auto-generated GraphQL API. 10 | -------------------------------------------------------------------------------- /projects/crunz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/marketing/bf719064e9ba7bdc297e3fbccef7691c21057af6/projects/crunz.png -------------------------------------------------------------------------------- /projects/crunz.yml: -------------------------------------------------------------------------------- 1 | name: Crunz 2 | url: https://github.com/crunzphp/crunz 3 | dependencies: 4 | - github@crunzphp/crunz 5 | description: Crunz is a framework-agnostic package to schedule periodic tasks (cron jobs) in PHP using a fluent API. 6 | -------------------------------------------------------------------------------- /projects/default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/marketing/bf719064e9ba7bdc297e3fbccef7691c21057af6/projects/default.png -------------------------------------------------------------------------------- /projects/deployer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/marketing/bf719064e9ba7bdc297e3fbccef7691c21057af6/projects/deployer.png -------------------------------------------------------------------------------- /projects/deployer.yml: -------------------------------------------------------------------------------- 1 | name: Deployer 2 | url: https://deployer.org/ 3 | dependencies: 4 | - github@deployphp/deployer 5 | description: | 6 | A deployment tool written in PHP with support for popular frameworks 7 | out of the box. Simple setup process and a minimal learning curve. 8 | Parallel execution without extensions and zero downtime deployments. 9 | -------------------------------------------------------------------------------- /projects/deptrac.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/marketing/bf719064e9ba7bdc297e3fbccef7691c21057af6/projects/deptrac.png -------------------------------------------------------------------------------- /projects/deptrac.yml: -------------------------------------------------------------------------------- 1 | name: Deptrac 2 | url: https://github.com/sensiolabs-de/deptrac 3 | dependencies: 4 | - github@sensiolabs-de/deptrac 5 | description: | 6 | Deptrac is a static code analysis tool that helps to enforce rules for 7 | dependencies between software layers. For example, you can define a rule like 8 | "controllers may not depend on models". To ensure this, deptrac analyzes 9 | your code to find any usages of models in your controllers and will show you 10 | where this rule was violated. 11 | -------------------------------------------------------------------------------- /projects/doctrine.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/marketing/bf719064e9ba7bdc297e3fbccef7691c21057af6/projects/doctrine.png -------------------------------------------------------------------------------- /projects/doctrine.yml: -------------------------------------------------------------------------------- 1 | name: Doctrine 2 | url: https://doctrine-project.org 3 | dependencies: 4 | - github@doctrine/orm 5 | - github@doctrine/dbal 6 | - github@doctrine/common 7 | - github@doctrine/migrations 8 | - github@doctrine/mongodb-odm 9 | description: | 10 | Object relational mapper (ORM) for PHP that sits on top of a powerful 11 | database abstraction layer (DBAL). One of its key features is the 12 | option to write database queries in a proprietary object oriented SQL 13 | dialect called Doctrine Query Language (DQL), inspired by Hibernates 14 | HQL. This provides developers with a powerful alternative to SQL that 15 | maintains flexibility without requiring unnecessary code duplication. 16 | -------------------------------------------------------------------------------- /projects/drupal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/marketing/bf719064e9ba7bdc297e3fbccef7691c21057af6/projects/drupal.png -------------------------------------------------------------------------------- /projects/drupal.yml: -------------------------------------------------------------------------------- 1 | name: Drupal 2 | url: https://drupal.org 3 | dependencies: 4 | - github@drupal/core 5 | description: | 6 | Drupal is an open source content management platform powering millions 7 | of websites and applications. It's built, used, and supported by an 8 | active and diverse community of people around the world. Drupal is 9 | open source software maintained and developed by a community of 10 | 1,000,000+ users and developers. It's distributed under the terms of the 11 | GNU General Public License (or "GPL"), which means anyone is free to 12 | download it and share it with others. 13 | -------------------------------------------------------------------------------- /projects/drupalconsole.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/marketing/bf719064e9ba7bdc297e3fbccef7691c21057af6/projects/drupalconsole.png -------------------------------------------------------------------------------- /projects/drupalconsole.yml: -------------------------------------------------------------------------------- 1 | name: Drupal Console 2 | url: https://drupalconsole.com/ 3 | dependencies: 4 | - github@hechoendrupal/drupal-console-core 5 | - github@hechoendrupal/drupal-console 6 | description: | 7 | The Drupal Console is a suite of tools that provide a command line 8 | interface (CLI) to generate boilerplate code and interact with a 9 | Drupal 8 installation. 10 | -------------------------------------------------------------------------------- /projects/drush.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/marketing/bf719064e9ba7bdc297e3fbccef7691c21057af6/projects/drush.png -------------------------------------------------------------------------------- /projects/drush.yml: -------------------------------------------------------------------------------- 1 | name: Drush 2 | url: https://www.drush.org/ 3 | dependencies: 4 | - github@drush-ops/drush 5 | description: | 6 | Drush is a command line shell and scripting interface for Drupal, a veritable 7 | Swiss Army knife designed to make life easier for those of us who spend some 8 | of our working hours hacking away at the command prompt. 9 | -------------------------------------------------------------------------------- /projects/eccube.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/marketing/bf719064e9ba7bdc297e3fbccef7691c21057af6/projects/eccube.png -------------------------------------------------------------------------------- /projects/eccube.yml: -------------------------------------------------------------------------------- 1 | name: EC-CUBE 2 | url: https://www.ec-cube.net/ 3 | dependencies: 4 | - github@EC-CUBE/ec-cube 5 | description: | 6 | EC-CUBE is an open source package used to build e-commerce sites. It is the 7 | most popular shopping cart system in Japan. Since the release of the 8 | version in 2006, users can build e-commerce sites for free. Due to its drag 9 | and drop functionality, users with no programming experience can create 10 | original online shops with ease. 11 | -------------------------------------------------------------------------------- /projects/facebook-ads.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/marketing/bf719064e9ba7bdc297e3fbccef7691c21057af6/projects/facebook-ads.png -------------------------------------------------------------------------------- /projects/facebook-ads.yml: -------------------------------------------------------------------------------- 1 | name: Facebook Ads API SDK 2 | url: https://developers.facebook.com/docs/marketing-apis 3 | dependencies: 4 | - github@facebook/facebook-php-ads-sdk 5 | description: | 6 | This Ads API SDK is built to facilitate application development for Facebook 7 | Ads API. It provides ads insights, audience management, and ads management. 8 | -------------------------------------------------------------------------------- /projects/facebook-instant-articles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/marketing/bf719064e9ba7bdc297e3fbccef7691c21057af6/projects/facebook-instant-articles.png -------------------------------------------------------------------------------- /projects/facebook-instant-articles.yml: -------------------------------------------------------------------------------- 1 | name: Facebook Instant Articles SDK 2 | url: https://instantarticles.fb.com/ 3 | dependencies: 4 | - github@facebook/facebook-instant-articles-sdk-php 5 | description: | 6 | The Facebook Instant Articles SDK provides a native interface for creating 7 | and publishing Instant Articles. The SDK enables developers to more easily 8 | integrate Instant Articles into content management systems and in turn 9 | enables journalist and publishers to easily publish Instant Articles. 10 | -------------------------------------------------------------------------------- /projects/flarum.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/marketing/bf719064e9ba7bdc297e3fbccef7691c21057af6/projects/flarum.png -------------------------------------------------------------------------------- /projects/flarum.yml: -------------------------------------------------------------------------------- 1 | name: Flarum 2 | url: https://flarum.org/ 3 | dependencies: 4 | - github@flarum/core 5 | description: | 6 | Flarum is the next-generation forum software that makes online discussion 7 | fun. It's simple, fast, and free. 8 | -------------------------------------------------------------------------------- /projects/flow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/marketing/bf719064e9ba7bdc297e3fbccef7691c21057af6/projects/flow.png -------------------------------------------------------------------------------- /projects/flow.yml: -------------------------------------------------------------------------------- 1 | name: Neos Flow 2 | url: https://flow.neos.io/ 3 | dependencies: 4 | - github@neos/flow 5 | description: | 6 | Flow is a PHP web application framework focussed on Domain-Driven Design and 7 | clean code. Based on strong conventions and best practices, it allows you to 8 | rapidly create powerful web applications. 9 | -------------------------------------------------------------------------------- /projects/forkcms.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/marketing/bf719064e9ba7bdc297e3fbccef7691c21057af6/projects/forkcms.png -------------------------------------------------------------------------------- /projects/forkcms.yml: -------------------------------------------------------------------------------- 1 | name: Fork CMS 2 | url: http://fork-cms.com 3 | dependencies: 4 | - github@forkcms/forkcms 5 | description: | 6 | Fork CMS is dedicated to creating a user friendly environment to build, 7 | monitor and update your website. We take great pride in being the 8 | Content Management System of choice for beginners and professionals. We 9 | combine this grand vision with the latest technological innovations to 10 | allow developers, front-end developers and designers to build kick-ass 11 | websites. 12 | -------------------------------------------------------------------------------- /projects/gally.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/marketing/bf719064e9ba7bdc297e3fbccef7691c21057af6/projects/gally.png -------------------------------------------------------------------------------- /projects/gally.yml: -------------------------------------------------------------------------------- 1 | name: Gally 2 | url: https://meetgally.com 3 | dependencies: 4 | - github@elastic-suite/gally/api 5 | description: | 6 | Gally is a next generation Searchandising Engine designed to easily create an API-first and User Friendly Search Engine based on Elasticsearch. 7 | Gally is MACH ready and perfectly designed to use in a Composable Commerce approach. 8 | 9 | -------------------------------------------------------------------------------- /projects/google-api.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/marketing/bf719064e9ba7bdc297e3fbccef7691c21057af6/projects/google-api.png -------------------------------------------------------------------------------- /projects/google-api.yml: -------------------------------------------------------------------------------- 1 | name: Google APIs Client Library 2 | url: https://developers.google.com/api-client-library/php/ 3 | dependencies: 4 | - github@google/google-api-php-client 5 | description: | 6 | The Google API Client Library for PHP is designed for PHP client-application 7 | developers. It offers simple, flexible, powerful access to many Google APIs. 8 | -------------------------------------------------------------------------------- /projects/google-cloud-platform.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/marketing/bf719064e9ba7bdc297e3fbccef7691c21057af6/projects/google-cloud-platform.png -------------------------------------------------------------------------------- /projects/google-cloud-platform.yml: -------------------------------------------------------------------------------- 1 | name: Google Cloud Platform SDK 2 | url: https://googlecloudplatform.github.io/google-cloud-php/#/ 3 | dependencies: 4 | - github@GoogleCloudPlatform/php-tools 5 | - github@GoogleCloudPlatform/google-cloud-php 6 | description: | 7 | Google Cloud Client Library for PHP - an idiomatic, intuitive, and natural 8 | way for PHP developers to integrate with Google Cloud Platform services, 9 | like Cloud Datastore and Cloud Storage. 10 | -------------------------------------------------------------------------------- /projects/goutte.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/marketing/bf719064e9ba7bdc297e3fbccef7691c21057af6/projects/goutte.png -------------------------------------------------------------------------------- /projects/goutte.yml: -------------------------------------------------------------------------------- 1 | name: Goutte 2 | url: https://github.com/fabpot/Goutte 3 | dependencies: 4 | - github@FriendsOfPHP/Goutte 5 | description: | 6 | Goutte is a screen scraping and web crawling library for PHP. Goutte 7 | provides a nice API to crawl websites and extract data from the HTML/XML 8 | responses. 9 | -------------------------------------------------------------------------------- /projects/grav.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/marketing/bf719064e9ba7bdc297e3fbccef7691c21057af6/projects/grav.png -------------------------------------------------------------------------------- /projects/grav.yml: -------------------------------------------------------------------------------- 1 | name: Grav 2 | url: https://getgrav.org 3 | dependencies: 4 | - github@getgrav/grav 5 | - github@getgrav/grav-plugin-admin 6 | description: | 7 | Grav is a Modern, Fast, Simple and Flexible flat-file CMS. While Grav is 8 | intentionally minimal, the extensive plugin architecture allows it to be 9 | adapt to almost any task. Powerful Twig templating ensures that 10 | development is only limited by your imagination. Sophisticated caching 11 | mechanisms mean that Grav is scary fast and can scale more than other 12 | flat-file CMS systems. Utilizing Markdown for content creation and YAML 13 | for configuration ensures it is always easy to use and configure. 14 | Being flat-file based, means a Grav site is quick to install, simple to 15 | migrate, and a breeze to version. 16 | -------------------------------------------------------------------------------- /projects/ibexadxp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/marketing/bf719064e9ba7bdc297e3fbccef7691c21057af6/projects/ibexadxp.png -------------------------------------------------------------------------------- /projects/ibexadxp.yml: -------------------------------------------------------------------------------- 1 | name: Ibexa DXP 2 | url: https://www.ibexa.co/ 3 | dependencies: 4 | - github@ibexa/core 5 | - github@ibexa/oss 6 | description: | 7 | Ibexa Digital Experience Platform (DXP) helps B2B companies to transform 8 | traditional sales strategies into frictionless buying experiences. 9 | We provide a single, unified platform to create and optimize your digital 10 | channels. Our platforms help you support and enhance existing sales and 11 | business models. 12 | -------------------------------------------------------------------------------- /projects/infection.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/marketing/bf719064e9ba7bdc297e3fbccef7691c21057af6/projects/infection.png -------------------------------------------------------------------------------- /projects/infection.yml: -------------------------------------------------------------------------------- 1 | name: Infection 2 | url: https://infection.github.io 3 | dependencies: 4 | - github@infection/infection 5 | description: | 6 | Infection is a PHP mutation testing framework based on AST (Abstract Syntax 7 | Tree) mutations. It works as a CLI tool and can be executed from your 8 | project’s root. Infection currently supports PHPUnit and PhpSpec test 9 | frameworks, requires PHP 7.1+ and Xdebug/phpdbg installed. 10 | -------------------------------------------------------------------------------- /projects/initcms.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/marketing/bf719064e9ba7bdc297e3fbccef7691c21057af6/projects/initcms.png -------------------------------------------------------------------------------- /projects/initcms.yml: -------------------------------------------------------------------------------- 1 | name: init CMS 2 | url: https://initcms.com/ 3 | dependencies: 4 | - github@networking/init-cms-bundle 5 | description: | 6 | The InitCmsBundle is a small flexible cms core based on Symfony 7 | which can be used as a standalone CMS or integrated into any existing 8 | Symfony project. 9 | -------------------------------------------------------------------------------- /projects/joomla.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/marketing/bf719064e9ba7bdc297e3fbccef7691c21057af6/projects/joomla.png -------------------------------------------------------------------------------- /projects/joomla.yml: -------------------------------------------------------------------------------- 1 | name: Joomla! 2 | url: https://www.joomla.org/ 3 | dependencies: 4 | # Joomla! CMS 5 | - github@joomla/joomla-cms 6 | # joomla.org websites 7 | - github@joomla/framework.joomla.org 8 | - github@joomla/jissues 9 | # Joomla! Framework components 10 | - github@joomla-framework/crypt 11 | - github@joomla-framework/registry 12 | description: | 13 | Joomla is an award-winning content management system (CMS), which 14 | enables you to build Web sites and powerful online applications. Many 15 | aspects, including its ease-of-use and extensibility, have made Joomla 16 | the most popular Web site software available. Best of all, Joomla is an 17 | open source solution that is freely available to everyone. 18 | -------------------------------------------------------------------------------- /projects/kimai.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/marketing/bf719064e9ba7bdc297e3fbccef7691c21057af6/projects/kimai.png -------------------------------------------------------------------------------- /projects/kimai.yml: -------------------------------------------------------------------------------- 1 | name: Kimai 2 | url: https://www.kimai.org 3 | dependencies: 4 | - github@kimai/kimai 5 | description: | 6 | Kimai is an open-source time-tracking application designed for 7 | project-driven teams to efficiently monitor working hours and 8 | billable time. 9 | Trusted by thousands of companies, it facilitates time analysis, 10 | budget adherence, and streamlined reporting. 11 | Kimai is open source software and distributed under the terms of the 12 | GNU Affero General Public License (or "AGPL"), which means anyone is free to 13 | download it and share it with others. 14 | -------------------------------------------------------------------------------- /projects/kunstmaancms.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/marketing/bf719064e9ba7bdc297e3fbccef7691c21057af6/projects/kunstmaancms.png -------------------------------------------------------------------------------- /projects/kunstmaancms.yml: -------------------------------------------------------------------------------- 1 | name: Kunstmaan CMS 2 | url: https://kunstmaancms.be 3 | dependencies: 4 | - github@Kunstmaan/KunstmaanBundlesCMS 5 | description: | 6 | The Kunstmaan CMS is an advanced yet user-friendly content 7 | management system, based on the Symfony framework combined 8 | with a whole host of community bundles. It provides a full featured, 9 | multi-language CMS system with an innovative page and form assembling 10 | interface, versioning, workflow, translation and media management and 11 | much more. 12 | -------------------------------------------------------------------------------- /projects/laravel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/marketing/bf719064e9ba7bdc297e3fbccef7691c21057af6/projects/laravel.png -------------------------------------------------------------------------------- /projects/laravel.yml: -------------------------------------------------------------------------------- 1 | name: Laravel 2 | url: https://laravel.com 3 | dependencies: 4 | - github@laravel/framework 5 | - github@laravel/installer 6 | - github@laravel/cashier 7 | - github@laravel/valet 8 | - github@laravel/tinker 9 | - github@laravel/passport 10 | - github@laravel/dusk 11 | - github@laravel/envoy 12 | description: | 13 | Laravel is a web application framework with expressive, elegant 14 | syntax. We believe development must be an enjoyable, creative 15 | experience to be truly fulfilling. Laravel attempts to take the pain 16 | out of development by easing common tasks used in the majority of web 17 | projects, such as authentication, routing, sessions, and caching. 18 | -------------------------------------------------------------------------------- /projects/lumen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/marketing/bf719064e9ba7bdc297e3fbccef7691c21057af6/projects/lumen.png -------------------------------------------------------------------------------- /projects/lumen.yml: -------------------------------------------------------------------------------- 1 | name: Lumen 2 | url: https://lumen.laravel.com/ 3 | dependencies: 4 | - github@laravel/lumen-framework 5 | - github@laravel/lumen-installer 6 | description: | 7 | Lumen is a micro-framework based on the same foundation as Laravel and built 8 | for developing microservices. 9 | -------------------------------------------------------------------------------- /projects/magento.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/marketing/bf719064e9ba7bdc297e3fbccef7691c21057af6/projects/magento.png -------------------------------------------------------------------------------- /projects/magento.yml: -------------------------------------------------------------------------------- 1 | name: Magento 2 | url: https://magento.com 3 | dependencies: 4 | - github@magento/magento2 5 | - github@magento/magento-composer-installer 6 | description: | 7 | Magento offers flexible, scalable eCommerce solutions designed to help 8 | you grow and succeed online. Our cost-effective technology platform 9 | makes it possible for you to control the content, functionality, and 10 | look and feel of your online store. 11 | -------------------------------------------------------------------------------- /projects/matomo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/marketing/bf719064e9ba7bdc297e3fbccef7691c21057af6/projects/matomo.png -------------------------------------------------------------------------------- /projects/matomo.yml: -------------------------------------------------------------------------------- 1 | name: Matomo 2 | url: https://matomo.org/ 3 | dependencies: 4 | - github@matomo-org/matomo 5 | description: | 6 | Matomo is the leading open source web analytics platform that gives you 7 | valuable insights on your website's visitors, your marketing campaigns 8 | and much more, so you can optimize your online strategy and experience 9 | of your users. 10 | -------------------------------------------------------------------------------- /projects/mautic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/marketing/bf719064e9ba7bdc297e3fbccef7691c21057af6/projects/mautic.png -------------------------------------------------------------------------------- /projects/mautic.yml: -------------------------------------------------------------------------------- 1 | name: Mautic 2 | url: https://www.mautic.org 3 | dependencies: 4 | - github@mautic/mautic 5 | description: | 6 | Mautic revolutionizes marketing automation. Mautic is an open source 7 | software tool available to every business regardless of their size 8 | and economic standing. Mautic provides lead nurturing, lead monitoring, 9 | automated email marketing campaigns, social media integrations, 10 | landing pages, assets, reports, calendar, events, analytics, forms 11 | and more. Mautic makes marketing automation possible for everyone. 12 | -------------------------------------------------------------------------------- /projects/orocommerce.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/marketing/bf719064e9ba7bdc297e3fbccef7691c21057af6/projects/orocommerce.png -------------------------------------------------------------------------------- /projects/orocommerce.yml: -------------------------------------------------------------------------------- 1 | name: OroCommerce 2 | url: https://www.orocommerce.com 3 | dependencies: 4 | - github@oroinc/orocommerce 5 | - github@oroinc/orocommerce-application 6 | - github@oroinc/platform 7 | description: | 8 | OroCommerce is an open-source Business to Business Commerce application 9 | built with flexibility in mind. OroCommerce can be customized and 10 | extended to fit any B2B commerce needs. 11 | -------------------------------------------------------------------------------- /projects/orocrm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/marketing/bf719064e9ba7bdc297e3fbccef7691c21057af6/projects/orocrm.png -------------------------------------------------------------------------------- /projects/orocrm.yml: -------------------------------------------------------------------------------- 1 | name: OroCRM 2 | url: https://www.orocrm.com 3 | dependencies: 4 | - github@oroinc/crm 5 | - github@oroinc/crm-application 6 | - github@oroinc/platform 7 | description: | 8 | OroCRM is an easy-to-use, open source CRM with built-in marketing 9 | tools for your ecommerce business. It's the CRM both marketing and 10 | sales can agree on! OroCRM was created with marketers in mind. Its 11 | marketing automation tools for commerce companies make it easy to 12 | track and segment customers across multiple channels. 13 | -------------------------------------------------------------------------------- /projects/oroplatform.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/marketing/bf719064e9ba7bdc297e3fbccef7691c21057af6/projects/oroplatform.png -------------------------------------------------------------------------------- /projects/oroplatform.yml: -------------------------------------------------------------------------------- 1 | name: OroPlatform 2 | url: https://oroinc.com/oroplatform/ 3 | dependencies: 4 | - github@oroinc/platform 5 | - github@oroinc/platform-application 6 | description: | 7 | The OroPlatform is an Open source Business Application Platform (BAP). 8 | It offers developers the exact business application platform they've 9 | been looking for, by combining the tools they need. Built in PHP and 10 | the Symfony framework, it seamlessly integrates into OroCRM and OroCommerce 11 | or works entirely standalone. Developing custom business applications has 12 | never been so easy. 13 | -------------------------------------------------------------------------------- /projects/owncloud.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/marketing/bf719064e9ba7bdc297e3fbccef7691c21057af6/projects/owncloud.png -------------------------------------------------------------------------------- /projects/owncloud.yml: -------------------------------------------------------------------------------- 1 | name: ownCloud 2 | url: https://owncloud.org/ 3 | dependencies: 4 | - github@owncloud/core 5 | - github@owncloud/updater 6 | description: | 7 | ownCloud is open source file sync and share software for everyone from 8 | individuals to large enterprises and service providers. ownCloud provides a 9 | safe, secure, and compliant file synchronization and sharing solution on 10 | servers that you control. 11 | -------------------------------------------------------------------------------- /projects/pagekit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/marketing/bf719064e9ba7bdc297e3fbccef7691c21057af6/projects/pagekit.png -------------------------------------------------------------------------------- /projects/pagekit.yml: -------------------------------------------------------------------------------- 1 | name: Pagekit 2 | url: https://pagekit.com/ 3 | dependencies: 4 | - github@pagekit/pagekit 5 | description: | 6 | Pagekit is a modular and lightweight CMS built from the ground up with a 7 | modern architecture in mind. It serves as a web application framework 8 | and provides an awesome platform for theme and extension developers. 9 | -------------------------------------------------------------------------------- /projects/pdepend.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/marketing/bf719064e9ba7bdc297e3fbccef7691c21057af6/projects/pdepend.png -------------------------------------------------------------------------------- /projects/pdepend.yml: -------------------------------------------------------------------------------- 1 | name: PHP Depend 2 | url: https://pdepend.org/ 3 | dependencies: 4 | - github@pdepend/pdepend 5 | description: | 6 | PHP_Depend is a small program that performs static code analysis on a 7 | given source base. It first takes the source code and parses it into an 8 | easily processable internal data structure. Then it measures several 9 | values, the so called software metrics. Each of these values stands for 10 | a quality aspect in the the analyzed software. 11 | -------------------------------------------------------------------------------- /projects/phan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/marketing/bf719064e9ba7bdc297e3fbccef7691c21057af6/projects/phan.png -------------------------------------------------------------------------------- /projects/phan.yml: -------------------------------------------------------------------------------- 1 | name: Phan 2 | url: https://github.com/phan/phan 3 | dependencies: 4 | - github@phan/phan 5 | description: | 6 | Phan is a static analyzer for PHP. Phan prefers to avoid false-positives and 7 | attempts to prove incorrectness rather than correctness. 8 | -------------------------------------------------------------------------------- /projects/php-censor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/marketing/bf719064e9ba7bdc297e3fbccef7691c21057af6/projects/php-censor.png -------------------------------------------------------------------------------- /projects/php-censor.yml: -------------------------------------------------------------------------------- 1 | name: PHP Censor 2 | url: https://github.com/php-censor/php-censor 3 | dependencies: 4 | - github@php-censor/php-censor 5 | description: | 6 | PHP Censor is an open source self-hosted continuous integration server for 7 | PHP projects. 8 | -------------------------------------------------------------------------------- /projects/php-cs-fixer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/marketing/bf719064e9ba7bdc297e3fbccef7691c21057af6/projects/php-cs-fixer.png -------------------------------------------------------------------------------- /projects/php-cs-fixer.yml: -------------------------------------------------------------------------------- 1 | name: PHP Coding Standards Fixer 2 | url: https://cs.symfony.com 3 | dependencies: 4 | - github@FriendsOfPHP/PHP-CS-Fixer 5 | description: | 6 | The PHP Coding Standards Fixer tool fixes most issues in your code when you 7 | want to follow the PHP coding standards as defined in the PSR-1 and PSR-2 8 | documents and many more. If you are already using a linter to identify coding 9 | standards problems in your code, you know that fixing them by hand is tedious. 10 | This tool does not only detect them, but also fixes them for you. 11 | -------------------------------------------------------------------------------- /projects/phpbb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/marketing/bf719064e9ba7bdc297e3fbccef7691c21057af6/projects/phpbb.png -------------------------------------------------------------------------------- /projects/phpbb.yml: -------------------------------------------------------------------------------- 1 | name: phpBB 2 | url: https://phpbb.com 3 | dependencies: 4 | - github@phpbb/phpbb/phpBB 5 | description: | 6 | phpBB is a free flat-forum bulletin board software solution that can be 7 | used to stay in touch with a group of people or can power your entire 8 | website. With an extensive database of user-created modifications and 9 | styles database containing hundreds of style and image packages to 10 | customise your board, you can create a very unique forum in minutes. 11 | -------------------------------------------------------------------------------- /projects/phpdocumentor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/marketing/bf719064e9ba7bdc297e3fbccef7691c21057af6/projects/phpdocumentor.png -------------------------------------------------------------------------------- /projects/phpdocumentor.yml: -------------------------------------------------------------------------------- 1 | name: phpDocumentor 2 | url: https://phpdoc.org 3 | dependencies: 4 | - github@phpDocumentor/phpDocumentor 5 | description: | 6 | phpDocumentor 2 is a tool with which it is possible to generate 7 | documentation from your PHP source code. With this documentation you 8 | can provide your consumers with more information regarding the 9 | functionality embedded within your source and not only what is usable 10 | to them from your user interface. Documentation generated by 11 | phpDocumentor 2 does not aim to be a replacement for conventional 12 | documentation but is rather supplemental, or reference, documentation. 13 | -------------------------------------------------------------------------------- /projects/phpinsights.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/marketing/bf719064e9ba7bdc297e3fbccef7691c21057af6/projects/phpinsights.png -------------------------------------------------------------------------------- /projects/phpinsights.yml: -------------------------------------------------------------------------------- 1 | name: PHP Insights 2 | url: https://phpinsights.com/ 3 | dependencies: 4 | - github@nunomaduro/phpinsights 5 | description: | 6 | PHP Insights was carefully crafted to simplify the analysis of your code 7 | directly from your terminal, and is the perfect starting point to analyze 8 | the code quality of your PHP projects. It contains built-in checks for 9 | making code reliable, loosely coupled, simple, and clean. It works 10 | out-of-the-box with Laravel, Symfony, Yii, Magento, and more. 11 | -------------------------------------------------------------------------------- /projects/phpmailer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/marketing/bf719064e9ba7bdc297e3fbccef7691c21057af6/projects/phpmailer.png -------------------------------------------------------------------------------- /projects/phpmailer.yml: -------------------------------------------------------------------------------- 1 | name: PHPMailer 2 | url: https://github.com/PHPMailer/PHPMailer 3 | dependencies: 4 | - github@PHPMailer/PHPMailer 5 | description: | 6 | PHPMailer is a full-featured email creation and transfer class for PHP. Used 7 | by many popular open-source projects, it can send emails without a local 8 | mail server. It supports DKIM and S/MIME signing and SMTP authentication 9 | with LOGIN, PLAIN, NTLM, CRAM-MD5 and Google's XOAUTH2 mechanisms over SSL 10 | and TLS transports. 11 | -------------------------------------------------------------------------------- /projects/phpmyadmin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/marketing/bf719064e9ba7bdc297e3fbccef7691c21057af6/projects/phpmyadmin.png -------------------------------------------------------------------------------- /projects/phpmyadmin.yml: -------------------------------------------------------------------------------- 1 | name: phpMyAdmin 2 | url: https://www.phpmyadmin.net 3 | dependencies: 4 | - github@phpmyadmin/phpmyadmin 5 | - github@phpmyadmin/motranslator 6 | - github@phpmyadmin/sql-parser 7 | description: | 8 | phpMyAdmin is a web interface for MySQL and MariaDB. It allows to create, 9 | copy, drop, rename and alter databases, tables, views, fields and indexes. 10 | It also manages user accounts, privileges stored procedures and triggers. 11 | -------------------------------------------------------------------------------- /projects/phpmyfaq.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/marketing/bf719064e9ba7bdc297e3fbccef7691c21057af6/projects/phpmyfaq.png -------------------------------------------------------------------------------- /projects/phpmyfaq.yml: -------------------------------------------------------------------------------- 1 | name: phpMyFAQ 2 | url: https://phpmyfaq.de 3 | dependencies: 4 | - github@thorsten/phpMyFAQ 5 | description: | 6 | phpMyFAQ is a multilingual, database-driven FAQ-system. It supports 7 | various databases and PHP 5.2 (or higher). phpMyFAQ also offers a 8 | multi-language Content Management-System with a WYSIWYG editor and an 9 | Image Manager, flexible multi-user support with user and group based 10 | permissions, templates, PDF-support, Facebook and Twitter support, LDAP 11 | and Microsoft Active Directory support and an easy to use installation 12 | script. 13 | -------------------------------------------------------------------------------- /projects/phpredexpert.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/marketing/bf719064e9ba7bdc297e3fbccef7691c21057af6/projects/phpredexpert.png -------------------------------------------------------------------------------- /projects/phpredexpert.yml: -------------------------------------------------------------------------------- 1 | name: phpRedExpert 2 | url: https://github.com/eugef/phpRedExpert 3 | dependencies: 4 | - github@eugef/phpRedExpert 5 | description: | 6 | phpRedExpert is a lightweight and powerful web tool for Redis key-value 7 | store management and administration. It allows you to manage keys, monitor 8 | and configure Redis servers in a simple and intuitive way. phpRedExpert 9 | supports a wide range of operations and is especially handy if you don't 10 | want to access Redis through its CLI. 11 | -------------------------------------------------------------------------------- /projects/phpspec.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/marketing/bf719064e9ba7bdc297e3fbccef7691c21057af6/projects/phpspec.png -------------------------------------------------------------------------------- /projects/phpspec.yml: -------------------------------------------------------------------------------- 1 | name: phpspec 2 | url: http://www.phpspec.net/ 3 | dependencies: 4 | - github@phpspec/phpspec 5 | description: | 6 | phpspec is a tool which can help you write clean and working PHP code 7 | using behaviour driven development or BDD. It's also a PHP toolset to 8 | drive emergent design by specification. 9 | -------------------------------------------------------------------------------- /projects/phpstan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/marketing/bf719064e9ba7bdc297e3fbccef7691c21057af6/projects/phpstan.png -------------------------------------------------------------------------------- /projects/phpstan.yml: -------------------------------------------------------------------------------- 1 | name: PHPStan 2 | url: https://github.com/phpstan/phpstan 3 | dependencies: 4 | - github@phpstan/phpstan 5 | description: | 6 | PHPStan is a PHP Static Analysis Tool. PHPStan focuses on finding errors in 7 | your code without actually running it. It catches whole classes of bugs even 8 | before you write tests for the code. 9 | -------------------------------------------------------------------------------- /projects/pico.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/marketing/bf719064e9ba7bdc297e3fbccef7691c21057af6/projects/pico.png -------------------------------------------------------------------------------- /projects/pico.yml: -------------------------------------------------------------------------------- 1 | name: Pico CMS 2 | url: http://picocms.org/ 3 | dependencies: 4 | - github@picocms/Pico 5 | description: | 6 | Pico is a stupidly simple, blazing fast, flat file CMS. You simply create 7 | markdown files in the content folder and those files become your pages. 8 | Pico trades one-click setups and complex management interfaces for blazing 9 | speed, flexibility, and a lightweight footprint. 10 | -------------------------------------------------------------------------------- /projects/pimcore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/marketing/bf719064e9ba7bdc297e3fbccef7691c21057af6/projects/pimcore.png -------------------------------------------------------------------------------- /projects/pimcore.yml: -------------------------------------------------------------------------------- 1 | name: Pimcore 2 | url: https://www.pimcore.org/ 3 | dependencies: 4 | - github@pimcore/pimcore 5 | description: | 6 | Pimcore is a platform for managing digital experiences. It is a 7 | consolidated platform for content, community and commerce across all 8 | customer touchpoints and integrates CMS, PIM, DAM and Commerce 9 | functionalities in one open source suite. 10 | -------------------------------------------------------------------------------- /projects/prestashop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/marketing/bf719064e9ba7bdc297e3fbccef7691c21057af6/projects/prestashop.png -------------------------------------------------------------------------------- /projects/prestashop.yml: -------------------------------------------------------------------------------- 1 | name: PrestaShop 2 | url: https://www.prestashop.com/ 3 | dependencies: 4 | - github@PrestaShop/PrestaShop 5 | description: | 6 | PrestaShop is an Open Source e-commerce solution used by more than 7 | 250,000 online stores. PrestaShop is simple, efficient and intuitive, 8 | enabling users to thrive in a competitive market regardless of size, 9 | industry or revenue. 10 | -------------------------------------------------------------------------------- /projects/propel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/marketing/bf719064e9ba7bdc297e3fbccef7691c21057af6/projects/propel.png -------------------------------------------------------------------------------- /projects/propel.yml: -------------------------------------------------------------------------------- 1 | name: Propel 2 | url: http://propelorm.org 3 | dependencies: 4 | - github@propelorm/Propel2 5 | description: | 6 | Propel is an open-source Object-Relational Mapping (ORM) for SQL- 7 | Databases in PHP 5.4. It allows you to access your database using a 8 | set of objects, providing a simple API for storing and retrieving 9 | data. But not only plain ORM but it also provides database schema 10 | migration, reverse engineering of existing database and much more. 11 | -------------------------------------------------------------------------------- /projects/psysh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/marketing/bf719064e9ba7bdc297e3fbccef7691c21057af6/projects/psysh.png -------------------------------------------------------------------------------- /projects/psysh.yml: -------------------------------------------------------------------------------- 1 | name: PsySH 2 | url: https://psysh.org/ 3 | dependencies: 4 | - github@bobthecow/psysh 5 | description: | 6 | PsySH is a runtime developer console, interactive debugger and REPL for PHP. 7 | -------------------------------------------------------------------------------- /projects/qloapps.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/marketing/bf719064e9ba7bdc297e3fbccef7691c21057af6/projects/qloapps.png -------------------------------------------------------------------------------- /projects/qloapps.yml: -------------------------------------------------------------------------------- 1 | name: QloApps 2 | url: https://qloapps.com/ 3 | dependencies: 4 | - github.com/Qloapps/QloApps 5 | description: | 6 | QloApps is a free and open-source hotel booking and property management system that provides a complete ecosystem—including a Property Website, Booking Engine, and PMS to streamline operations and enhance the guest experience. 7 | -------------------------------------------------------------------------------- /projects/quality-analyzer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/marketing/bf719064e9ba7bdc297e3fbccef7691c21057af6/projects/quality-analyzer.png -------------------------------------------------------------------------------- /projects/quality-analyzer.yml: -------------------------------------------------------------------------------- 1 | name: QualityAnalyzer 2 | url: https://github.com/Qafoo/QualityAnalyzer 3 | dependencies: 4 | - github@Qafoo/QualityAnalyzer 5 | description: | 6 | Quality Analyzer is a tool to visualize metrics and source code, which will 7 | help you when doing code reviews for your projects. 8 | -------------------------------------------------------------------------------- /projects/ratchet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/marketing/bf719064e9ba7bdc297e3fbccef7691c21057af6/projects/ratchet.png -------------------------------------------------------------------------------- /projects/ratchet.yml: -------------------------------------------------------------------------------- 1 | name: Ratchet 2 | url: http://socketo.me/ 3 | dependencies: 4 | - github@ratchetphp/Ratchet 5 | description: | 6 | A PHP library for asynchronously serving WebSockets. Build up your 7 | application through simple interfaces and re-use your application without 8 | changing any of its code just by combining different components. 9 | -------------------------------------------------------------------------------- /projects/roadiz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/marketing/bf719064e9ba7bdc297e3fbccef7691c21057af6/projects/roadiz.png -------------------------------------------------------------------------------- /projects/roadiz.yml: -------------------------------------------------------------------------------- 1 | name: Roadiz 2 | url: https://www.roadiz.io 3 | dependencies: 4 | - github@roadiz/roadiz 5 | description: | 6 | Roadiz is a modern CMS based on a polymorphic node system which can 7 | handle many types of services and contents. Its back-office has been 8 | developed with a high sense of design and user experience. Its theming 9 | system is built to live independently from back-office allowing easy 10 | switching and multiple themes for one content basis. For example, it 11 | allows you to create one theme for your desktop website and another one 12 | for your mobile, using the same node hierarchy. Roadiz is released under 13 | MIT license, so you can reuse and distribute its code for personal and 14 | commercial projects. 15 | -------------------------------------------------------------------------------- /projects/robotask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/marketing/bf719064e9ba7bdc297e3fbccef7691c21057af6/projects/robotask.png -------------------------------------------------------------------------------- /projects/robotask.yml: -------------------------------------------------------------------------------- 1 | name: RoboTask 2 | url: https://robo.li/ 3 | dependencies: 4 | - github@consolidation/robo 5 | description: | 6 | RoboTask is a modern and simple PHP task runner inspired by Gulp and Rake 7 | aimed to automate common tasks such as writing cross-platform scripts, 8 | executing workers and watching filesystem changes. 9 | -------------------------------------------------------------------------------- /projects/rocketeer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/marketing/bf719064e9ba7bdc297e3fbccef7691c21057af6/projects/rocketeer.png -------------------------------------------------------------------------------- /projects/rocketeer.yml: -------------------------------------------------------------------------------- 1 | name: Rocketeer 2 | url: http://rocketeer.autopergamene.eu/ 3 | dependencies: 4 | - github@rocketeers/rocketeer 5 | description: | 6 | Rocketeer is a modern PHP task runner and deployment package. Emphasis is put 7 | on smart defaults and modern development. While it is coded in PHP, it can 8 | deploy any project from small HTML/CSS websites to large Rails applications. 9 | -------------------------------------------------------------------------------- /projects/sculpin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/marketing/bf719064e9ba7bdc297e3fbccef7691c21057af6/projects/sculpin.png -------------------------------------------------------------------------------- /projects/sculpin.yml: -------------------------------------------------------------------------------- 1 | name: Sculpin 2 | url: https://sculpin.io 3 | dependencies: 4 | - github@sculpin/sculpin 5 | description: | 6 | Sculpin is a static site generator written in PHP. It converts Markdown 7 | files and formats Twig templates into a set of static HTML files that 8 | can be easily deployed. 9 | -------------------------------------------------------------------------------- /projects/shopsysframework.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/marketing/bf719064e9ba7bdc297e3fbccef7691c21057af6/projects/shopsysframework.png -------------------------------------------------------------------------------- /projects/shopsysframework.yml: -------------------------------------------------------------------------------- 1 | name: Shopsys Framework 2 | url: https://shopsys.com 3 | dependencies: 4 | - github@shopsys/shopsys 5 | description: | 6 | Shopsys Framework is a scalable PHP framework for fast-growing e-commerce 7 | sites created and maintained by in-house developers or outsourcing companies. 8 | Our product provides the tools and know-how to help save thousands of 9 | dev-hours in the short and long term growth of e-merchants and their websites. 10 | -------------------------------------------------------------------------------- /projects/shopware.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/marketing/bf719064e9ba7bdc297e3fbccef7691c21057af6/projects/shopware.png -------------------------------------------------------------------------------- /projects/shopware.yml: -------------------------------------------------------------------------------- 1 | name: Shopware 2 | url: https://shopware.com/ 3 | dependencies: 4 | - github@shopware/shopware 5 | description: | 6 | Shopware is a complete eCommerce solution, combining a full range of 7 | functionality with a masterfully crafted simplistic design suitable 8 | for novice and expert alike. 9 | -------------------------------------------------------------------------------- /projects/silverstripe-cms.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/marketing/bf719064e9ba7bdc297e3fbccef7691c21057af6/projects/silverstripe-cms.png -------------------------------------------------------------------------------- /projects/silverstripe-cms.yml: -------------------------------------------------------------------------------- 1 | name: Silverstripe CMS 2 | url: https://www.silverstripe.org 3 | dependencies: 4 | - github@silverstripe/silverstripe-framework 5 | description: | 6 | Silverstripe CMS is a customisable and developer friendly content 7 | management system for creating and managing dynamic websites. 8 | -------------------------------------------------------------------------------- /projects/solidinvoice.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/marketing/bf719064e9ba7bdc297e3fbccef7691c21057af6/projects/solidinvoice.png -------------------------------------------------------------------------------- /projects/solidinvoice.yml: -------------------------------------------------------------------------------- 1 | name: SolidInvoice 2 | url: https://solidinvoice.co 3 | dependencies: 4 | - github@SolidInvoice/SolidInvoice 5 | description: | 6 | SolidInvoice is an open-source invoicing application designed for ease of use and to 7 | simplify accounting for freelancers or big companies. The main features 8 | include creating and managing clients with multiple contacts, creating and 9 | sending quotes and invoices and online payments. 10 | -------------------------------------------------------------------------------- /projects/sonataproject.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/marketing/bf719064e9ba7bdc297e3fbccef7691c21057af6/projects/sonataproject.png -------------------------------------------------------------------------------- /projects/sonataproject.yml: -------------------------------------------------------------------------------- 1 | name: Sonata Project 2 | url: https://sonata-project.org 3 | dependencies: 4 | - github@sonata-project/SonataCoreBundle 5 | - github@sonata-project/SonataAdminBundle 6 | description: | 7 | The goal of the Sonata Project is to provide a set of high-level 8 | features built on top of the Symfony framework, with a strong focus on 9 | administration backends. 10 | Think of it as a toolkit based on Symfony components to make building 11 | sites easy and fun! 12 | Famous bundles are already available: Admin Bundle, Block Bundle, Media 13 | Bundle, ... and used by other projects like the Symfony CMF. 14 | Most bundles are focused on providing CMS and e-commerce solutions, but 15 | there are also fairly independent bundles like the Notification Bundle 16 | or the Seo Bundle or even libraries like the cache library or the 17 | exporter library. 18 | -------------------------------------------------------------------------------- /projects/spress.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/marketing/bf719064e9ba7bdc297e3fbccef7691c21057af6/projects/spress.png -------------------------------------------------------------------------------- /projects/spress.yml: -------------------------------------------------------------------------------- 1 | name: Spress 2 | url: https://spress.yosymfony.com/ 3 | dependencies: 4 | - github@spress/Spress 5 | description: | 6 | Spress is a static site generator built with Symfony components. 7 | Spress allows you to create and deploy blogs, personal websites, 8 | simple corporate websites with information about your products 9 | and even landing pages for your services. 10 | -------------------------------------------------------------------------------- /projects/spryker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/marketing/bf719064e9ba7bdc297e3fbccef7691c21057af6/projects/spryker.png -------------------------------------------------------------------------------- /projects/spryker.yml: -------------------------------------------------------------------------------- 1 | name: Spryker 2 | url: https://spryker.com 3 | dependencies: 4 | - github@spryker/Symfony 5 | - github@spryker/demoshop 6 | description: | 7 | Spryker is the commerce operating system for customer focused companies. 8 | Spryker gives you the freedom to implement, test, and reinvent new customer 9 | interfaces in no time, ensuring you the best possible access to your market 10 | at all times. 11 | -------------------------------------------------------------------------------- /projects/sulu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/marketing/bf719064e9ba7bdc297e3fbccef7691c21057af6/projects/sulu.png -------------------------------------------------------------------------------- /projects/sulu.yml: -------------------------------------------------------------------------------- 1 | name: Sulu 2 | url: https://sulu.io 3 | dependencies: 4 | - github@sulu/sulu 5 | description: | 6 | Sulu is a content management platform based on Symfony made for 7 | businesses. It's a flexible CMS to create and manage enterprise 8 | multi-sites and a reliable development environment for high-performance 9 | apps. With powerful features for developers and a simple UI for editors 10 | it's the ideal engine for state-of-the-art business websites and 11 | web-based software. 12 | -------------------------------------------------------------------------------- /projects/sylius.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/marketing/bf719064e9ba7bdc297e3fbccef7691c21057af6/projects/sylius.png -------------------------------------------------------------------------------- /projects/sylius.yml: -------------------------------------------------------------------------------- 1 | name: Sylius 2 | url: https://sylius.com 3 | dependencies: 4 | - github@Sylius/Sylius 5 | description: | 6 | Sylius is an Open Source eCommerce Framework based on Symfony full stack. 7 | The technology is constructed from fully decoupled components (bundles in Symfony glossary), 8 | which means that every feature (products catalog, shipping engine, promotions system...) 9 | can be used in any other application. 10 | It integrates easily with existing systems and guarantees fast time to market. 11 | Built with testing in mind and a great care of code quality, 12 | Sylius is exceptionally flexible and easy to use. Its wide and friendly community 13 | is always ready to help with any issue. Finally, it is fully documented. 14 | -------------------------------------------------------------------------------- /projects/symfonyfs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/marketing/bf719064e9ba7bdc297e3fbccef7691c21057af6/projects/symfonyfs.png -------------------------------------------------------------------------------- /projects/symfonyfs.yml: -------------------------------------------------------------------------------- 1 | name: Symfony 2 | url: https://symfony.com 3 | dependencies: 4 | - github@symfony/symfony 5 | description: | 6 | Symfony is an Open Source PHP Web applications development framework. 7 | It was originally conceived by the interactive agency SensioLabs for 8 | the development of web sites for its own customers. Symfony was 9 | published by the agency in 2005 under MIT Open Source license and today 10 | it is among the leading frameworks available for PHP development. 11 | -------------------------------------------------------------------------------- /projects/thelia.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/marketing/bf719064e9ba7bdc297e3fbccef7691c21057af6/projects/thelia.png -------------------------------------------------------------------------------- /projects/thelia.yml: -------------------------------------------------------------------------------- 1 | name: Thelia 2 | url: https://thelia.net 3 | dependencies: 4 | - github@thelia/thelia 5 | description: | 6 | Thelia is a tool for creating e-commerce websites and for online 7 | content management, published under General Public License. Thelia 8 | differs from competitor applications due to the ease with which it can 9 | be used and customised. 10 | -------------------------------------------------------------------------------- /projects/typo3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/marketing/bf719064e9ba7bdc297e3fbccef7691c21057af6/projects/typo3.png -------------------------------------------------------------------------------- /projects/typo3.yml: -------------------------------------------------------------------------------- 1 | name: TYPO3 2 | url: https://typo3.org/ 3 | dependencies: 4 | - github@TYPO3/TYPO3.CMS 5 | description: | 6 | TYPO3 is an open source PHP based web content management system released 7 | under the GNU GPL. 8 | -------------------------------------------------------------------------------- /projects/uvdesk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/marketing/bf719064e9ba7bdc297e3fbccef7691c21057af6/projects/uvdesk.png -------------------------------------------------------------------------------- /projects/uvdesk.yml: -------------------------------------------------------------------------------- 1 | name: Uvdesk 2 | url: https://www.uvdesk.com/ 3 | dependencies: 4 | - github@uvdesk/community-skeleton 5 | - github@uvdesk/core-framework 6 | description: | 7 | UVdesk offers SaaS-based and Open Source helpdesk solution to easier the 8 | overall support process to deliver best customer service. Ready for 9 | Ecommerce, Marketplace & Multichannel. 10 | -------------------------------------------------------------------------------- /projects/wallabag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/marketing/bf719064e9ba7bdc297e3fbccef7691c21057af6/projects/wallabag.png -------------------------------------------------------------------------------- /projects/wallabag.yml: -------------------------------------------------------------------------------- 1 | name: Wallabag 2 | url: https://wallabag.org/ 3 | dependencies: 4 | - github@wallabag/wallabag 5 | description: | 6 | Wallabag is an Open Source read-it-later application. It saves the content 7 | of web pages to read them later anywhere: your browser, your RSS reader, 8 | your smartphone or any other service thanks to its API. 9 | -------------------------------------------------------------------------------- /projects/wikimedia.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/marketing/bf719064e9ba7bdc297e3fbccef7691c21057af6/projects/wikimedia.png -------------------------------------------------------------------------------- /projects/wikimedia.yml: -------------------------------------------------------------------------------- 1 | name: Wikimedia 2 | url: https://www.wikimedia.org/ 3 | dependencies: 4 | - github@wikimedia/mediawiki-vendor 5 | description: | 6 | Wikimedia is a global movement whose mission is to bring free educational 7 | content to the world. Its projects include Wikipedia, Wiktionary, Wikiquote 8 | and Wikibooks. 9 | -------------------------------------------------------------------------------- /projects/wpcli.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/marketing/bf719064e9ba7bdc297e3fbccef7691c21057af6/projects/wpcli.png -------------------------------------------------------------------------------- /projects/wpcli.yml: -------------------------------------------------------------------------------- 1 | name: WP-CLI 2 | url: https://wp-cli.org/ 3 | dependencies: 4 | - github@wp-cli/wp-cli 5 | description: | 6 | WP-CLI is a set of command-line tools for managing WordPress installations. 7 | You can update plugins, configure multisite installs and much more, without 8 | using a web browser. 9 | -------------------------------------------------------------------------------- /projects/yii.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/marketing/bf719064e9ba7bdc297e3fbccef7691c21057af6/projects/yii.png -------------------------------------------------------------------------------- /projects/yii.yml: -------------------------------------------------------------------------------- 1 | name: Yii 2 | url: https://www.yiiframework.com/ 3 | dependencies: 4 | - github@yiisoft/yii2-queue 5 | - github@yiisoft/yii2-shell 6 | - github@yiisoft/yii-dev-tool 7 | description: | 8 | Yii is a high-performance PHP framework best for developing Web 2.0 9 | applications. Yii comes with rich features: MVC, DAO/ActiveRecord, I18N/L10N, 10 | caching, authentication and role-based access control, scaffolding, testing, 11 | etc. It can reduce your development time significantly. 12 | -------------------------------------------------------------------------------- /projects/zendexpressive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/marketing/bf719064e9ba7bdc297e3fbccef7691c21057af6/projects/zendexpressive.png -------------------------------------------------------------------------------- /projects/zendexpressive.yml: -------------------------------------------------------------------------------- 1 | name: Zend Expressive 2 | url: https://github.com/zendframework/zend-expressive 3 | dependencies: 4 | - github@zendframework/zend-expressive 5 | - github@zendframework/zend-expressive-tooling 6 | - github@zendframework/zend-expressive-migration 7 | description: | 8 | Zend Expressive builds on zend-stratigility to provide a minimalist PSR-7 9 | middleware framework for PHP. With Expressive, you can build middleware 10 | applications such as APIs, Websites, Single Page Applications and more. 11 | -------------------------------------------------------------------------------- /projects/zikula.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/marketing/bf719064e9ba7bdc297e3fbccef7691c21057af6/projects/zikula.png -------------------------------------------------------------------------------- /projects/zikula.yml: -------------------------------------------------------------------------------- 1 | name: Zikula 2 | url: https://ziku.la 3 | dependencies: 4 | # don't use https://github.com/zikula/core/blob/1.5/composer.json because 5 | # those dependencies are merged during runtime using a Composer plugin 6 | - github@zikula/Wizard 7 | description: | 8 | Zikula is a Web Application Toolkit, which allows you to run 9 | impressive websites and build powerful online applications. Zikula has 10 | received praise for many things, but we believe the highlights are ease 11 | of use, quick and easy development, security and performance and 12 | lastly flexibility. 13 | -------------------------------------------------------------------------------- /projects/zippy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/marketing/bf719064e9ba7bdc297e3fbccef7691c21057af6/projects/zippy.png -------------------------------------------------------------------------------- /projects/zippy.yml: -------------------------------------------------------------------------------- 1 | name: Zippy 2 | url: https://github.com/alchemy-fr/Zippy 3 | dependencies: 4 | - github@alchemy-fr/Zippy 5 | description: | 6 | Zippy is a PHP library to read, create, and extract archives in various 7 | formats via command line utilities or PHP extensions. Zippy supports file 8 | formats such as .zip, .tar, .tar.gz and .tar.bz2. 9 | -------------------------------------------------------------------------------- /validator.php: -------------------------------------------------------------------------------- 1 | yamlParser = new Parser(); 35 | } 36 | 37 | protected function execute(InputInterface $input, OutputInterface $output) 38 | { 39 | $io = new SymfonyStyle($input, $output); 40 | 41 | // check that the YAML code is valid for all files 42 | $yamlFiles = array_merge([__DIR__.'/projects.yml'], glob(__DIR__.'/projects/*.yml', GLOB_NOSORT)); 43 | foreach ($yamlFiles as $filePath) { 44 | try { 45 | $this->yamlParser->parseFile($filePath); 46 | } catch (ParseException $e) { 47 | $io->error(sprintf('The "%s" file does not have valid YAML syntax.', $filePath)); 48 | 49 | return self::EXIT_ERROR; 50 | } 51 | } 52 | 53 | $projects = $this->yamlParser->parseFile(__DIR__.'/projects.yml'); 54 | 55 | // check that project detail files use '.yml' extension instead of '.yaml' 56 | $filesWithYamlExtension = glob(__DIR__.'/projects/*.yaml', GLOB_NOSORT); 57 | if (count($filesWithYamlExtension) > 0) { 58 | $io->error(sprintf('All the YAML files in the "projects/" directory must use ".yml" as extension instead of ".yaml". The following files must change their extension: %s.', implode(', ', $filesWithYamlExtension))); 59 | 60 | return self::EXIT_ERROR; 61 | } 62 | 63 | // check that projects are only in one category (e.g. a project can't be in 'cms' and 'default') 64 | $allProjectSlugs = []; 65 | foreach ($projects as $category => $projectSlugs) { 66 | foreach ($projectSlugs as $projectSlug) { 67 | if (\in_array($projectSlug, $allProjectSlugs, true)) { 68 | $io->error(sprintf('The "%s" project slug of "%s" category is included in another category (each projet can only be included in a single category.', $projectSlug, $category)); 69 | 70 | return self::EXIT_ERROR; 71 | } 72 | 73 | $allProjectSlugs[] = $projectSlug; 74 | } 75 | } 76 | 77 | // check that if a project is listed in the index, it defines a separate file with its information 78 | foreach ($allProjectSlugs as $projectSlug) { 79 | $expectedProjectFile = sprintf(__DIR__.'/projects/%s.yml', $projectSlug); 80 | if (!file_exists($expectedProjectFile)) { 81 | $io->error(sprintf('The "%s" project is missing a file with its detailed description in "%s".', $projectSlug, $expectedProjectFile)); 82 | 83 | return self::EXIT_ERROR; 84 | } 85 | } 86 | 87 | // check that all project files correspond to a project listed in the index file 88 | foreach (glob(__DIR__.'/projects/*.yml', GLOB_NOSORT) as $filePath) { 89 | $projectSlug = basename($filePath,'.yml'); 90 | if (!\in_array($projectSlug, $allProjectSlugs, true)) { 91 | $io->error(sprintf('The "%s" file refers to a project called "%s" which is not listed in the main projects.yml file.', $filePath, $projectSlug)); 92 | 93 | return self::EXIT_ERROR; 94 | } 95 | } 96 | 97 | // check that ech project defines its own logo file 98 | foreach (glob(__DIR__.'/projects/*.yml', GLOB_NOSORT) as $filePath) { 99 | $projectSlug = basename($filePath,'.yml'); 100 | if (!file_exists(str_replace('.yml', '.png', $filePath))) { 101 | $io->error(sprintf('The "%s" project does not define its logo in a "%s.png" file.', $projectSlug, $projectSlug)); 102 | 103 | return self::EXIT_ERROR; 104 | } 105 | } 106 | 107 | $io->success('All data is valid.'); 108 | 109 | return self::EXIT_SUCCESSFUL; 110 | } 111 | } 112 | 113 | final class Validator extends Application 114 | { 115 | protected function getCommandName(InputInterface $input): ?string 116 | { 117 | return 'validate'; 118 | } 119 | 120 | protected function getDefaultCommands(): array 121 | { 122 | $defaultCommands = parent::getDefaultCommands(); 123 | $defaultCommands[] = new Validate(); 124 | 125 | return $defaultCommands; 126 | } 127 | 128 | public function getDefinition(): InputDefinition 129 | { 130 | $inputDefinition = parent::getDefinition(); 131 | $inputDefinition->setArguments(); 132 | 133 | return $inputDefinition; 134 | } 135 | } 136 | 137 | $application = new Validator(); 138 | $application->run(); 139 | --------------------------------------------------------------------------------