phalcon / incubator
Adapters, prototypes or functionality that can be potentially incorporated to the C-framework.
Fund package maintenance!
phalcon
Open Collective
Installs: 2 593 499
Dependents: 97
Suggesters: 0
Security: 0
Stars: 730
Watchers: 90
Forks: 339
Open Issues: 16
Requires
- php: >=7.2
- ext-phalcon: ^4.0
- phalcon/incubator-acl: ^1.0.0-alpha.1
- phalcon/incubator-config: ^1.0
- phalcon/incubator-logger: ^1.0
- phalcon/incubator-session: ^1.0
- phalcon/incubator-test: ^1.0.0-alpha.1
Requires (Dev)
- doctrine/instantiator: 1.0.5
- phalcon/dd: ^1.1
- phalcon/ide-stubs: ^4.0
- phpdocumentor/reflection-docblock: 2.0.4
- squizlabs/php_codesniffer: ^2.9
- vlucas/phpdotenv: ^2.4
Suggests
- duncan3dc/fork-helper: To use extended class to access the beanstalk queue service
- swiftmailer/swiftmailer: ~5.2
- twig/twig: ~1.35|~2.0
- dev-master
- 4.0.x-dev
- v4.0.0-alpha.7
- v4.0.0-alpha.6
- v4.0.0-alpha.5
- v4.0.0-alpha.4
- v4.0.0-alpha.3
- v4.0.0-alpha.2
- v4.0.0-alpha.1
- 3.4.x-dev
- v3.4.6
- v3.4.5
- v3.4.4
- v3.4.3
- v3.4.2
- v3.4.1
- v3.4.0
- 3.3.x-dev
- v3.3.0
- 3.2.x-dev
- v3.2.6
- v3.2.5
- v3.2.4
- v3.2.3
- v3.2.2
- v3.2.1
- v3.2.0
- 3.1.x-dev
- v3.1.2
- v3.1.1
- 3.0.x-dev
- v3.0.4
- v3.0.3
- v3.0.2
- v3.0.1
- v3.0.0
- 2.1.x-dev
- 2.0.x-dev
- v2.0.13
- v2.0.12
- v2.0.11
- v2.0.10
- v2.0.9
- v2.0.8
- v2.0.7
- v2.0.6
- v2.0.3
- v2.0.2
- v2.0.1
- v2.0.0
- 1.3.x-dev
- 1.3.5.x-dev
- v1.3.5
- v1.3.4
- 1.3.0.x-dev
- 1.2.x-dev
- v1.2.5
- 1.2.4.x-dev
- 1.2.4
This package is auto-updated.
Last update: 2024-11-05 14:30:41 UTC
README
This is a repository to publish/share/experiment with new adapters, prototypes or functionality that can potentially be incorporated into the Phalcon Framework.
We also welcome submissions of snippets from the community, to further extend the framework.
The code in this repository is written in PHP.
Installation
Installing via Composer
Install Composer in a common location or in your project:
curl -s http://getcomposer.org/installer | php
Then create the composer.json
file as follows:
{ "require": { "phalcon/incubator": "^3.4" } }
If you are still using Phalcon 2.0.x, create the composer.json
file as follows:
{ "require": { "phalcon/incubator": "^2.0" } }
Run the composer installer:
$ php composer.phar install
Installing via GitHub
Just clone the repository in a common location or inside your project:
git clone https://github.com/phalcon/incubator.git
For a specific git branch (eg 2.0.13) please use:
git clone -b 2.0.13 git@github.com:phalcon/incubator.git
Autoloading from the Incubator
Add or register the following namespace strategy to your Phalcon\Loader
in order
to load classes from the incubator repository:
$loader = new Phalcon\Loader(); $loader->registerNamespaces( [ 'Phalcon' => '/path/to/incubator/Library/Phalcon/', ] ); $loader->register();
Testing
Tests are located in tests/
and use Codeception. See tests/README.md.
Contributing
See CONTRIBUTING.md.
Contributions Index
See INDEX.md.
Sponsors
Become a sponsor and get your logo on our README on Github with a link to your site. [Become a sponsor]
Backers
Support us with a monthly donation and help us continue our activities. [Become a backer]
License
Incubator is open-sourced software licensed under the New BSD License.
© 2011-2018, Phalcon Framework Team