Phar is the PHP Archive format. It is analogous to Java's JAR files.
0
votes
1answer
15 views
How to include a .phar and reference it
My directory looks like this
Then my code looks like this:
require "aws.*";
use Aws\DynamoDb\DynamoDbClient;
Is this the right way to do it?
It doesn't show me an error or anything so I don't ...
0
votes
1answer
35 views
Composer.phar “Could not rename /tmp…”
I want to install FOSUserBundle I added to composer.json "friendsofsymfony/user-bundle": "*" I executed this command php composer.phar update friendsofsymfony/user-bundle And I get message
Could ...
1
vote
0answers
18 views
including firephp via phar archive
I'm trying to install firephp by using the phar archive. The howto is described here: firephp install
But I've a problem with including the phar file, if tried it this way:
// If using PHAR Archive
...
0
votes
1answer
35 views
How to include paths to PHAR archives in the open-basedir directive?
I'm trying to use composer on my local development machine, and it always fails when trying to copy something from the PHAR archive:
[ErrorException]
copy(): open_basedir restriction in effect. ...
0
votes
1answer
61 views
AWS PHP SDK 2 (aws.phar) doesn't work in xampp
I can't seem to make aws.phar work on my local xampp (under Ubuntu). My example is very simple:
<?php
error_reporting(-1);
ini_set('display_errors', 'on');
require_once 'aws.phar';
use ...
0
votes
0answers
203 views
Setting up PHP Codesniffer (installed with homebrew) in Sublime Text 2
Is it possible to run PHP Codesniffer from a .phar file? What does the following documentation, taken from a Sublime Text 2 plugin at https://github.com/benmatselby/sublime-phpcs, mean?
If you ...
1
vote
1answer
83 views
What File Format Does PharData::extractTo Extract Files As?
I'm using the extractTo method of the PHP PharData class to examine the contents of a phar file and running into some strage results. I've reached the limits of my byte level detective work and was ...
0
votes
1answer
50 views
how to deploy phar file on a webserver like xampp
I am using maven with php and packaging my code to phar archive and deploy it on xampp. In java we copy war files for webapp folder of application server like tomcat. How do I do that in php? do i ...
2
votes
1answer
80 views
Generating a PHAR for a simple application
I'm experimenting in building CLI tools using the Symfony2 console library. I've got something basic working and now I want to package it as a phar. I've read a few examples but the ones I've seen are ...
0
votes
0answers
55 views
Pro,cons and Usage of php PHAR [closed]
I have came acrossed phar manual. but i don't understand why should PHAR be used instead of just file include. What is the practical use of phar? what is pro and cons of phar if you compare it with ...
0
votes
0answers
109 views
Installing aws php sdk with phar
I am trying to use the AWS SDK for PHP 2 to create a file on S3.
Installing via Phar:
...
0
votes
1answer
31 views
passwordlib fatal error
I'm using PasswordLib. I run my project on wamp and everything is OK but when I uploaded it to my hosting I got this error:
Fatal error: Uncaught exception 'PharException' with message ...
0
votes
1answer
66 views
Cannot create Phar from ZFTool of Zend Framework 2
The Phar Archive of the ZFTool can be downloaded from GitHub or created manually.
When I try to complite the Phar on my own, I get this error:
user@machine:/lib/ZendFramework/ZFTool# bin/create-phar
...
0
votes
0answers
140 views
Error running make: missing separator (did you mean TAB instead of 8 spaces?)
I'm trying to get PHP phar command line tool installed on my Debian VM, how here described:
(1) download the php-src, I assume it's in /tmp/php/src
(2) make the dir /tmp/phar
(3) Save ...
0
votes
1answer
49 views
How to get executable phar command from the PHP source working?
I want to be able to work with phar command line tool (on Debian Linux) like described on this manpage.
What I've done so far:
downloaded the PHP PHAR source folder;
moved it to /usr/share/;
...
2
votes
0answers
31 views
How do freshen a phar cached with the phar.cache_list directive?
I added my phar to the cache_list directive in php.ini and caching worked great. A few days later I updated the phar now I get the following error:
Warning: ...
2
votes
1answer
102 views
How to include PHP files in a compatible way for packaging with and without Phar?
Given a PHP application with the following structure:
/
lib/
mylib.php
web/
index.php // includes "mylib.php" with: require_once __DIR__ . "/../lib/mylib.php"
I am trying to ...
1
vote
1answer
91 views
Marking PHAR archive as PHP executable
I'm trying to make my PHAR archive marked as PHP (I don't know correct term for this) so that I can use it from cli without php part. So instead of calling php /path/to/my/archive.phar ARGUMENTS_HERE ...
0
votes
1answer
204 views
Not able to run composer.phar
Composer is a tool for dependency management in PHP projects. It allows you to declare the dependent libraries your project needs and it will install them in your project for you. Composer is not a ...
0
votes
1answer
75 views
behat predefined steps
has anybody encountered the following problem: behat apparently works fine, but it has no predefined steps: the result of
\tests> php .\behat\behat.phar -di
is empty even the file ...
0
votes
1answer
44 views
Append data to tar file using PHP-PHAR
I'm using the following code to create and append data to a tar-archive in PHP. The problem is that phar does not use an exclusive lock on the tar-file causing problem when I have atomic writes to the ...
1
vote
2answers
220 views
I downloaded aws.phar, but can't require it
I downloaded aws.phar from Official repository of the AWS SDK for PHP
I put the downloaded file named aws.phar in my my project.
require 'aws.phar';
It's under the same directory with my php file.
...
-1
votes
1answer
225 views
PHPUnit running from phar not working [closed]
I need to run PHPUNit from PHAR instead of from Pear.
The only output I'm getting is the help file. I don't see my test run at all. Here is my code:
<?php
include 'phpunit.phar';
include ...
0
votes
1answer
107 views
Can I include composer.phar in my project like a class library?
I want to use that feature in order to set dependencies right via web interface.
I have found in Using Phar Archives: Introduction tutorial that it's possible to do next:
<?php
include ...
1
vote
0answers
25 views
PHP Phar created with Phar::createDefaultStub running as CLI in browser
I have an application I want to package as a PHAR with both CLI and web interfaces (it acts as an API to wider system so I'd like to avoid reproducing the same libraries across two PHAR archives). The ...
-2
votes
1answer
184 views
How to install symfony on PHP 5.2.8 with no phar support (Composer dependency)?
I have been attempting to install symfony on my website however I have had little success as it depends on composer.
To install:
php -r ...
0
votes
0answers
53 views
phar symlink, file not found
I've tried two different php/nginx buildpacks for heroku using mason on a vagrant machine I've set up.
Both times I've gotten some similar to the following:
$ mason build /app -b ...
-1
votes
1answer
424 views
Phar is missing from php 5.4.10 [closed]
I need to install http://getcomposer.org/ which requireds the phar from the php installation. sadly enough, although i've updated to 5.4 and rebuilt the apache to use it (php -v shows 5.4.10), when ...
0
votes
1answer
260 views
phpinfo() doesn't show phar enabled/disabled
I am using PHP Version 5.3.15 on OpenSUSE. Following is in my php.ini:
[Phar]
; http://php.net/phar.readonly
phar.readonly = Off
; http://php.net/phar.require-hash
phar.require_hash = Off
...
2
votes
0answers
66 views
Using phar Stream to Write PharData Files
When I try this:
$phar = new PharData('./phar.tar', 0, null, Phar::TAR);
$phar->addEmptyDir('test');
file_put_contents('phar://./phar.tar/test/foo.txt', 'bar');
I get the following error:
...
1
vote
0answers
189 views
Amazon AWS PHP SDK 2 PharException thrown with suhosin installed
Using the PHP SDK 2 provided by Amazon AWS and released as a phar archive I get the following error on a QA server (dev is fine)
Fatal error: Uncaught exception 'PharException' with message
...
6
votes
1answer
699 views
How to use PHP Composer on HostGator
I recently decided to start a project in Zend Framework 2 and was having trouble getting it to run on a HostGator shared server.
By default, HostGator's shared servers run in PHP 5.2.2 and if you ...
2
votes
1answer
158 views
Minimal PHP Phar stub
I'm currently experimenting with an extension mechanism for my framework. Each module consists of at least one PHP file (defining a single class) and an XSL stylesheet but potentially several other ...
1
vote
1answer
163 views
How do I extract a .tar file in pure PHP on Windows?
I have a PHP script that I want to run on Windows. I need to extract a .tar file. How do I extract the tar file. I know of the PharData class and that works on Linux but not on Windows. My script just ...
3
votes
1answer
183 views
Extract tar archive with empty directories with php PharData
I'm trying to extract a .tar archive by means of PHP.
I'm using such a code:
$phar = new PharData('test.tar');
$phar->extractTo('/home/user/newtest');
It works fine, but if my archive contains ...
4
votes
1answer
105 views
Perfoming a tar.gz operation in PHP 5.3 - CLI vs. Phar?
I need to perform some tar gzip operation inside a php script running on Apache (php5.3).
In the past, I've used:
new PharData($archivePath . '.tar');
$p = $p->convertToExecutable(Phar::TAR, ...
0
votes
1answer
224 views
Including a PHAR that packages an existing class
I have a project that currently uses Guzzle (which is loaded [as a .phar] by an explicit "require_once" in a bootstrap file).
I have been trying to add the AWSSDKforPHP from Amazon, so that I can ...
13
votes
1answer
368 views
How to place a phar file inside a phar file?
I'd like to place a phar file inside a phar file. I tried it most straight forward:
$p = new Phar('test.phar', null, 'self.phar');
$p->setStub('<?php Phar::mapPhar();
include ...
1
vote
2answers
1k views
Extracting files from .phar archive
There is something I entirely missed as for phar files. I am installing a project that requires phpunit, pdepend and other dependencies. I fetched them as .phar files. But, I am not able ot extract ...
0
votes
2answers
163 views
I am including a phar file (goutte.phar) in my php application. When I try to hit the url I get Connection to the server was reset error
Is there any specific settings in php.ini that I need to change to allow the server to include the file?
require_once dirname(dirname(__FILE__)).'/unleashapi/protected/extensions/goutte.phar';
3
votes
1answer
250 views
Phar archive and stub file usage
I try to define a deployment procedure based on command :
php <phar_file_deployed_on_server>.phar
This command generates an index.php file external to phar archive.
The index.php file will ...
2
votes
2answers
993 views
Symfony2 set up
I'm trying to set up sample Symfony2 project as shown here
http://symfony.com/doc/current/quick_tour/the_big_picture.html
and after accessing config.php I have this:
Major problems have been ...
1
vote
0answers
66 views
Php Archives (Phar) do not uncompress text files
I am deploying my Php application as a compressed Php Archive (Phar), I have noticed that when using gzip compression the css and other text files are not uncompressed and look like gibberish. When ...
2
votes
0answers
198 views
How do I install DoctrineMongoODMBundle on a Mac [closed]
I get this:
Problem 1
- doctrine/mongodb dev-master requires ext-mongo * -> no matching package found.
- doctrine/doctrine-mongo-odm-module dev-master requires doctrine/mongodb-odm dev-master ...
0
votes
0answers
132 views
PHP difference between terminal and browser
There is Neo4J installed on my Ubuntu and I'm running a test code. It's perfectly working when the code runs on terminal such as:
root@ekin-Inspiron-1090:/var/www# php neo.php
home: demolished
name: ...
1
vote
1answer
425 views
How to make an executable phar?
I want to start a phar script as an executable, directly by doing foo.phar <params> instead of php foo.phar <params>.
1
vote
1answer
356 views
Maven 3 + maven-php-plugin + PHPUnit can not extract phar
I am trying to clean and build a maven php project, I have the following code snippet in my pom file:
<build>
<plugins>
<plugin>
...
0
votes
1answer
314 views
phpDocumentor 2 installer fails to install symfony/Console with composer
I've downloaded (cloned) the github version of phpdocumentor 2 and followed the installation instructions found on the phpdoc website
At the composer installation step 3 (php composer.phar install) I ...
-1
votes
1answer
219 views
Phar failing on centos 6
i have a problem with Phar on centos 6. When i run "phar" i get:
# phar -v
PHP Warning: include(): Failed opening 'phar:///usr/bin/phar.phar/pharcommand.inc' for inclusion (include_path='.:') in ...
1
vote
1answer
778 views
How to obtain php_phar.dll?
PHP on Windows does not include php_phar.dll which means that
when installing pear i have to do it like this php -d phar.require_hash=0 go-pear.phar because it would not install Graph part of pear
...


